如何在 XML 中对换行符进行编码

发布于 2024-11-14 15:06:19 字数 228 浏览 0 评论 0原文

我的 XML 元素包含带有换行符的文本,但没有其他格式。文本由 JavaScript 读取并以 HTML 形式显示。是否有 XML 安全的方法来编码换行符,或者该文本是否需要为 CDATA?

示例:

<sample>Here is a line <br>Here is another</sample>

I have XML elements that contain text with newlines but no other formatting. The text is being read by javascript and displayed in HTML. Is there an XML-safe way to encode the linebreak, or does this text need to be CDATA?

Example:

<sample>Here is a line <br>Here is another</sample>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无声无音无过去 2024-11-21 15:06:19

需要是 CDATA:

<sample><![CDATA[Here is a line <br />Here is another]]></sample>

needs to be CDATA:

<sample><![CDATA[Here is a line <br />Here is another]]></sample>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文