XML DTD - 将属性定义为数字并要求 #PCDATA
我意识到架构是可行的方法,但这是一项任务。如果我想要求某个元素上的属性是浮点数/数字,这可能吗?我唯一知道要做的就是将其定义为 CDATA - 是否有一些预定义的 ENTITY ?我认为我不应该引入任何其他 DTD,因此如果它那么复杂,那么对于本次作业的目的来说它是不正确的。现在我这样做:
这只是 DTD 的限制吗?
此外,有没有办法在元素上要求#PCDATA?我正在使用 Altova XML Spy,它允许元素具有:
对于如下定义的东西:
通过了验证。谢谢。
I realize Schema is the way to go, but this is an assignment. If I wanted to require an attribute on some element to be a float/number, is that possible? The only thing I know to do is to define it as CDATA - is there some predefined ENTITY ? I don't think I should pull in any other DTD, so if it's that complex, it's incorrect for the purposes of this assignment. Right now I do it like so:
<!ATTLIST elemName attrName CDATA>
Is this just a limitation of DTD?
Additionally, is there a way to require #PCDATA on an element? I'm using Altova XML Spy and it is allowing elements with:
<elem foo="bar"/>
for something defined like:
<!ELEMENT elem (#PCDATA)>
<!ATTLIST elem foo CDATA #REQUIRED>
past the validation. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎没有办法仅指定数字,并且空字符串对于
#PCDATA
有效。there doesn't appear to be a way to specify only numbers and the empty string is valid for
#PCDATA
.