XML 中的空 CDATA
<body><![CDATA[]]></body>
或者
<body></body>
两者之间有什么区别或缺点吗?解析 XML 时我需要执行任何操作吗?你更喜欢什么?
<body><![CDATA[]]></body>
or
<body></body>
Is there a difference or downside to each? Do I need to do anything while parsing the XML? What do you prefer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就 XML 解析器而言,没有区别。如果您希望在 XSLT 输出期间强制创建 CDATA,可以使用一个选项 (cdata-section-elements) 来导致某些元素输出 CDATA。
As far as the XML parser is concerned there is NO difference. If you wish to force CDATA creation during XSLT output there is an option (cdata-section-elements) that can be used to cause certain elements to output CDATA.