Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何在 XSD 中表示以下内容。
<price-update> <![CDATA[ arbitrary data goes here ]]> </price-update>
<element name="price-update" type="string"></element>
几乎是你能得到的。
(我认为最好将答案从评论中移到实际答案中)。
CDATA 标记只是将数据转义为文本节点的一种方式。因此,您不能规定您需要一个 CDATA 节点。
从 DOM 的角度来看,以下文档是相同的:
<doc>value</doc>
和
<doc><![CDATA[value]]></doc>