它甚至可能吗?
>我知道可以根据正则表达式进行限制,但事实并非如此
>我知道可以将属性声明为由XPath计算的外键,但它似乎必须是唯一的
例:
<root children="2"> <child /> <child /> </root>
W3C Schema 1.0无法基于实例文档约束属性值.
原文链接:https://www.f2er.com/xml/292477.htmlSchematron是一个很好的工具,用于验证文档是否符合此类自定义验证方案.
例如:
<?xml version="1.0" encoding="UTF-8"?> <schema xmlns="http://purl.oclc.org/dsdl/schematron"> <pattern> <rule context="root[@children]"> <assert id="children-value" test="@children=count(child)" flag="error"> The root/@children value must be equal to the number of child elements. </assert> </rule> </pattern> </schema>