gpt4 book ai didi

spring - 在其他 Spring 消息(属性文件)中使用一个消息作为参数

转载 作者:行者123 更新时间:2023-12-02 09:37:35 25 4
gpt4 key购买 nike

我需要做这样的事情:

bob.common=goat
bob.have=I have a {bob.common}!
bob.want=I want a {bob.common}!
bob.need=I need a {bob.common}!

这种事情可能吗?我知道这看起来很愚蠢,但是这里需要能够重用通用的部分,而我们确实不能(不想)以编程方式做到这一点。

我们已经在属性中使用了编号参数,但我们希望能够传递对另一个属性的引用。

最佳答案

我建议这样做:

bob.common=goat 
bob.have=I have a {0}!
bob.want=I want a {0}!
bob.need=I need a {0}!

然后在您的页面中:

<spring:message code="bob.common" var="animal"/>
<spring:message code="bob.have" arguments="${animal}"/>
<spring:message code="bob.want" arguments="${animal}"/>
<spring:message code="bob.need" arguments="${animal}"/>

例如,如果您想改变您的动物,那么您想要的方式就太严格了。

关于spring - 在其他 Spring 消息(属性文件)中使用一个消息作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7973264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com