假设我们的XML看起来像这样:
<messages>
<note id="501">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note id="502">
<to>Jani</to>
<to>Rob</to>
<from>Tove</from>
<heading>Re: Reminder</heading>
<body>I won't</body>
</note>
</messages>
有没有办法让IDE检查注释节点是否有重复的子节点?我们看到有2个节点:
<to>Jani</to>
<to>Rob</to>
有没有办法告诉IDE它应该是一个独特的字段?
在同一主题上,我也在寻找一种强制使用相同字段名的方法:
<messages>
<note id="501"></note>
<note id="502"></note>
<note id="502"></note>
<note id="502"></note>
<foo id="502"></foo> // bad, because all direct children of messsages should be "note"
</messages>