Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<g:each in="${users}" var="user"> ${user.name} </g:each>
生产
<br> Bob<br> <br> Mike<br>
我以前从未注意到这一点......任何阻止它的方法(除了将<g:each>和${user.name}线放在同一条线上)。这是一个错误吗?
<g:each>
${user.name}
尝试这个:
<g:each in="${users}" var="user">${user.name}</g:each>
如果您仍然有这么多的休息时间,问题可能出在 ${user.name} 的数据库中存储的值上
我猜是内容的问题。检查其中的内容${user.name}并尝试使用${user.name.encodeAsHTML()}并提供结果。
${user.name.encodeAsHTML()}