是 xml解析时显示
请告诉我,当我在编写 时添加 xml 时,然后当我在 Mozilla Firefox 中查看源代码时,它会显示
当我解析这个 xml 时,它是转义还是到来?请告诉我!我想在 Objective C 中解析这个 xml?
Please tell me when I add in the xml while writing <![CDATA[ content ]]>
then when I view the source in Mozilla Firefox then it shows <![CDATA[ content ]]>
and when I parse this xml then is it escape or it comes? Please tell me! I want to parse this xml in objective C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CDATA的目的是标记不应该被解析的东西。您在
中放置的任何内容都不会被解析。
The purpose of CDATA is to mark things that shouldn't be parsed. Anything you put within
<![CDATA[...]]>
will not be parsed.