ui.xml 文件中的换行符使其成为 HTML

发布于 2024-12-10 15:18:53 字数 220 浏览 0 评论 0原文

我有一个 ui.xml 文件,其中包含以下内容:

<g:TextArea>
    1. Line one

    2. Line two 
</g:TextArea>

当然,在最终的 HTML 中,它显示为 1。第一行 2. 第二行,在一行上。

如何使最终的 HTML 包含所需的换行符?

I've got a ui.xml file with the following in it:

<g:TextArea>
    1. Line one

    2. Line two 
</g:TextArea>

Of course, in the final HTML, this is coming out as 1. Line one 2. Line two, on a single line.

How can I cause the final HTML to include the desired newline characters?

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

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

发布评论

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

评论(1

ら栖息 2024-12-17 15:18:54

您可以将文本放入标签的“text”属性中,而不是将文本嵌入到标签中:

<g:TextArea text="Line 1
Line 2"/>

是“\r”。这对我来说很有效,但显然它不如将文本包含在标签本身中那么优雅。

Instead of embedding the text in the tag, you could put it in the "text" attribute of the tag:

<g:TextArea text="Line 1
Line 2"/>

The is a '\r'. This did the trick for me, but obviously it's not as elegant as enclosing the text within the tag itself.

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