带有内容 #PCDATA 或元素列表的 XML 元素
我喜欢使用如下所示的元素定义 DTD:
<result>
<name/><resultType/>[more elements...]
</result>
OR it could be:
<result>Some text</result>
我的元素定义如下所示:
<!ELEMENT result ((name,resultType,...,pages)|#PCDATA)>
但 Visual Studio 说这是无效的。
有什么解决办法吗?
I like to define a DTD with an element like following:
<result>
<name/><resultType/>[more elements...]
</result>
OR it could be:
<result>Some text</result>
My element definition looks like that:
<!ELEMENT result ((name,resultType,...,pages)|#PCDATA)>
But Visual Studio says that this isn't valid.
Any solutions for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
#PCDATA
必须是括号中列出的元素之一,并由|
分隔。尝试:The
#PCDATA
has to be one of the elements listed in the parenthesis and delimited by|
. Try: