我正在尝试在 grails 中格式化 gsp 中的字符串,但没有得到我想要的结果。我只是在这里看这个答案(如何在 gsp grails 文件上显示字符串新行?
这是我得到的字符串以及如何在视图中显示:
{ "name":"john", "surname": "Blat", "age": 11, "width": 30, "width": 600, "height": 150}
这就是我想得到它:
{ "name":"john",
"surname": "Blat",
"age": 11,
"width": 30,
"width": 600,
"height": 150}
这是我的 gsp 代码:
<g:if test="${myInstance?.person}">
<li class="fieldcontain">
<span id="person-label" class="property-label"><g:message code="myInstance.person.label" default="person" /></span>
<span class="property-value" aria-labelledby="person-label"><g:fieldValue bean="${myInstance}" field="person"/></span>
</li>
</g:if>
这是我正在尝试但不做任何事情的一种方式(.replace('',''
):
<g:if test="${myInstance?.person.replace('n','<br>')}">
<li class="fieldcontain">
<span id="person-label" class="property-label"><g:message code="myInstance.person.label" default="person" /></span>
<span class="property-value" aria-labelledby="person-label"><g:fieldValue bean="${myInstance}" field="person"/></span>
</li>
</g:if>
这是另一种方式,带有 pre 选项卡:
<g:if test="${myInstance?.person}">
<li class="fieldcontain">
<span id="person-label" class="property-label"><g:message code="myInstance.person.label" default="person" /></span>
<pre>
<span class="property-value" aria-labelledby="person-label"><g:fieldValue bean="${myInstance}" field="person"/>
</pre></span>
</li>
</g:if>
如果encodeAsHtml
不起作用,则意味着属性之间没有n
。这段代码应该可以解决问题(但你必须调整它以对齐你的元素):
myInstance?.person.replaceAll(',s"', ',<br/>s"')
但是,这是一种肮脏的方式!您应该尝试将字符串格式源更改为可被 encodeAsHtml 利用的内容;)
我在我的 gsp 中尝试这个。当然,我已经在数据库中有""
${myobjectinstance?.myfield.encodeAsHTML().replaceAll('n', '<br/>') }