grails gsp test 的计算结果为 false,但块仍会呈现。为什么?
我对 Grails 测试操作员感到困惑。
这个表达式:
<g:if test="${!(preferences.displayOption.equals('ANA') || preferences.displayOption.equals('FLOP'))} ">
${!(preferences.displayOption.equals('ANA') || preferences.displayOption.equals('FLOP'))}
</g:if>
打印
false
How can that be?我正在打印与我正在测试的完全相同的条件!
尽管我确信测试条件的计算结果为“假”,因为它在下一行中打印出“假”,但 g:if 内的语句正在被渲染。
安努对发生的事情有想法。
I'm baffled with Grails test operator.
This expression:
<g:if test="${!(preferences.displayOption.equals('ANA') || preferences.displayOption.equals('FLOP'))} ">
${!(preferences.displayOption.equals('ANA') || preferences.displayOption.equals('FLOP'))}
</g:if>
prints
false
How can that be? I'm printing the exact same condition I'm testing for!
even though I'm certain the test condition evaluates to 'false' because it prints false in the very next line, the statements inside the g:if are being rendered.
Anu ideas as to what's going on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为问题是测试中最后一个 } 之后的尾随空格。字符串“false”计算结果为 true,而“false”将被 if 标记适当地解释为 false。
I think the problem is the trailing space after the final } in your test. The string "false " evaluates to true, whereas "false" will appropriately interpreted as false by the if tag.
尝试删除测试属性中结束 } 后的多余空格。您可以在开发模式下通过在 url 中添加“?showSource=true”来查看生成的 groovy 源代码。
额外的空格导致它创建一个字符串“false”,其计算结果为 true。
Try removing the extra space after the closing } in the test attribute. You can view the generated groovy source by adding "?showSource=true" to the url in development mode.
The extra space causes it to create a String "false " which evaluates to true.