ui.xml 文件中的换行符使其成为 HTML
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将文本放入标签的“text”属性中,而不是将文本嵌入到标签中:
是“\r”。这对我来说很有效,但显然它不如将文本包含在标签本身中那么优雅。
Instead of embedding the text in the tag, you could put it in the "text" attribute of the tag:
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.