使用文本框插入 XML 数据
我刚刚收到一个网站分配,它的服务器显然不支持数据库。所以我在想,在传统的 XML DTD 中......我们有这样的数据:
<book category="CHILDREN">
<title>Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
使用文本框,也许通过使用 XSLT 或其他东西进行链接,我可以在现有的 XML 表中添加/插入更多数据吗?
另外,我可以执行验证,例如没有重复的标题吗?
我对此有点陌生,希望得到一些帮助。
I just got a website assignment and it server apparently does not support databases. So I was thinking, in a traditional XML DTD...we have data like this:
<book category="CHILDREN">
<title>Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
Using Text Boxes and maybe by linking using XSLT or something else, can I add/insert more data into my existing XML sheet??
Also, can I perform validation such as no duplicate titles??
I'm kind of new to this and some help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这是关于将“行”添加到您的书籍“记录”中,那么您可以这样做
If this is about adding "rows" to your book "record", then you can do this