我现在通过 message.properties 在我的应用程序中显示文本,在某些情况下,我必须显示类似的消息并稍作更改。是否可以仅检查消息属性中的条件,例如:
if (a == salary) {
code = your salary for this month is {0}
}else if (a == tax) {
code = your tax for this month is {0}
}
现在在这种情况下,文本的唯一区别是薪水和税款,而不是在控制器中检查它,或者我只想在 message.properties 中检查这个条件。可能吗 ?如果是怎么办?
谢谢 !提前。