struts 2 文本标签动态表达,如何实现?

发布于 2024-08-16 18:24:01 字数 192 浏览 2 评论 0原文

我需要从操作到文本标记动态提供密钥,

<s:text name="<%=talkToUsInfo.messageKey%>" />  

但文本标记上的名称属性被声明为 false(不确定为什么?)

如何在不更改 jar 文件中的 tld 的情况下获得类似的功能?

I need to supply the key dynamically from the action to the text tag

<s:text name="<%=talkToUsInfo.messageKey%>" />  

but the name attribute on text tag is declared as false ( not sure why ? )

How do i get something like this working without changing the tld in the jar file ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

就是爱搞怪 2024-08-23 18:24:01

看看 OGNL

可能看起来像这样

<s:text name="%{talkToUsInfo.messageKey}" />

Take a look at OGNL

It might look like this

<s:text name="%{talkToUsInfo.messageKey}" />
星軌x 2024-08-23 18:24:01

Struts 文档 说:

相反,您应该使用继承的 getText() 方法你的Action扩展了XWork的ActionSupport:

<s:textfield name="lastName" label="getText('person.lastName')" />

所以我用eg

<s:property value="getText('status' + #someObject.currentStatus)" />

代替了“s:text”并且它起作用了。

Struts documentation says:

Instead, you should use the getText() method that you inherit when your Action extends XWork's ActionSupport:

<s:textfield name="lastName" label="getText('person.lastName')" />

So I used e.g.

<s:property value="getText('status' + #someObject.currentStatus)" />

instead of "s:text" and it worked.

别在捏我脸啦 2024-08-23 18:24:01

我更喜欢使用 OGNLs:text 并且不手动调用 getText
您通常会在添加动态部分时定义一个固定前缀,因此可以使用类似这样的东西:

<s:text name="%{'student.types.'+currencyType}" />

我在 s:property 中使用 getText 的唯一一次是像这样的东西(如果你想使用 s:text ,需要一些 if/else ):

<s:property value="shouldCancelIt.equals(\"0\") ? 
                           getText('label.yes'):getText('label.no')" />

I prefer to use OGNL and s:text and do not make a call to getText manually.
You usually define a fixed prefix while add the dynamic part to it, so some thing like this could be used:

<s:text name="%{'student.types.'+currencyType}" />

The only time which I used getText inside the s:property was something like this (which needs some if/else if you wanted to use s:text ):

<s:property value="shouldCancelIt.equals(\"0\") ? 
                           getText('label.yes'):getText('label.no')" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文