xml 标签是否允许多个属性?

Does xml tag allow multiple attributes?

例如:

<Rule name="test_1", type="gameName">
    <note>
        ...
    </note>
    <tests>
        ...
    </tests>
</Rule>

在我将 'type' 属性添加到标签 <Rule></Rule> 后,PyCharm 通过显示带有红旗的 'unexpected tokens' 表示 xml 块无效. xml 标签是否允许多个属性?

是的,XML 可以包含多个属性。但是您不必使用逗号分隔属性,而是必须使用 space。这将是编写示例的正确方法。

<Rule name="test_1" type="gameName">