在我的Grails 2.4.4应用程序中,我正在使用messages.properties进行国际化,其值如下:

my.app.thing.allowance(s)={0} Allowance(s)

它正在像这样的gsp中使用:
<g:message code="my.app.thing.allowance(s)" args="${item.allowances.size()}"/>

正确显示任何大于0的值的消息,例如item.allowances.size() == 4,则显示的消息为4 Allowances(s)
问题是,如果是item.allowances.size() == 0,那么显示的消息就是{0} Allowance(s)
我试图以几种不同的方式编写args,例如:
<g:message code="my.app.thing.allowance(s)" args="${item.allowances.isEmpty() ? 0.intValue() : item.allowances.size()}"/>

我已经调试了一些东西,并且我确定item.allowances.size() == 0但是由于某种原因它不能正确处理0值。将int值为0的参数传递给messages.properties的正确方法是什么?

最佳答案

g.message中,参数始终作为List传递。

来自:http://docs.grails.org/3.0.17/ref/Tags/message.html



请尝试以下代码:

<g:message code="my.app.thing.allowance(s)" args="[item.allowances.size()]"/>

10-06 13:32