使用编辑器/ IDE强制使用唯一的XML名称

时间:2018-05-05 00:21:35

标签: xml ide

假设我们的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>

0 个答案:

没有答案