grails gsp test 的计算结果为 false,但块仍会呈现。为什么?

发布于 2024-08-31 20:14:44 字数 454 浏览 4 评论 0原文

我对 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 技术交流群。

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

发布评论

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

评论(2

鸠书 2024-09-07 20:14:44

我认为问题是测试中最后一个 } 之后的尾随空格。字符串“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.

揪着可爱 2024-09-07 20:14:44

尝试删除测试属性中结束 } 后的多余空格。您可以在开发模式下通过在 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.

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