所以,我试着提出一个简单的条件:
<#if documentData.isOtherInsurance>
<p>✔ Да</p>
<#else> <p>✘Нет </p></#if>
我得到的错误是:
For "#if" condition: Expected a boolean, but this has evaluated to a method+sequence (wrapper: f.e.b.SimpleMethodModel):
==> documentData.isOtherInsurance!false [in template "InsuranceNotification" at line 1, column 1445]
----
Tip: Maybe using obj.something instead of obj.isSomething will yield the desired value.
----
----
FTL stack trace ("~" means nesting-related):
- Failed at: #if documentData.isOtherInsurance!false [in template "InsuranceNotification" at line 1, column 1440]
----
所以我几乎什么都试过了
(一)
一个二个一个一个
2条答案
按热度按时间hyrbngr71#
试试这个:
bvjveswy2#
isOtherInsurance
是一个方法,正如错误消息所指出的,而不是boolean
。请尝试documentData.otherInsurance
(没有“is”),这是boolean isOtherInsurance()
Java方法自动定义的Java Bean属性。注意,有时开发人员错误地将这样的方法声明为
Boolean isOtherInsurance()
(大写的Boolean
)。然后他们应该将其更改为Boolean getOtherInsurance()
或boolean isOtherInsurance()
。但如果他们不这样做,您仍然可以使用documentData.isOtherInsurance()
(注意()
将调用该方法,因此随后将使用该方法的返回值,而不是方法本身)。