gpt4 book ai didi

xml - 我需要一个schematron规则,仅在另一个属性首先存在时才强制该属性的存在。

转载 作者:行者123 更新时间:2023-12-03 16:15:23 26 4
gpt4 key购买 nike

我试图这样写一个schematron规则:
仅当名称属性存在时,所有者属性才存在。例如:

<business name="n1" owner="o1" />


owner属性只有在name属性存在的情况下才能存在。谢谢!

最佳答案

您可以断言@owner@name都存在,或者@owner不存在:

<rule context="business">
<assert test="(@owner and @name) or not(@owner)">
The owner attribute requires the name attribute.
</assert>
</rule>

关于xml - 我需要一个schematron规则,仅在另一个属性首先存在时才强制该属性的存在。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41949729/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com