Struts 1 MessageRessources - 参数

发布于 2024-07-29 20:25:36 字数 263 浏览 2 评论 0原文

是否可以做这样的事情:

<bean:message bundle="MyBundle" key="mytext.text" 
    arg0='<input  type="text"  name="text"  value="<%=num %>"'/>

我知道可以传递 HTML 元素,但最终会得到一个值为“<%=num%>”的输入框而不是该变量的实际值。 我缺少什么?

Is it possible to do something like this:

<bean:message bundle="MyBundle" key="mytext.text" 
    arg0='<input  type="text"  name="text"  value="<%=num %>"'/>

I know that it is possible to pass an HTML element, but I will end up with an input box with the value "<%=num%>" instead the actual value of that variable. What am I missing?

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

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

发布评论

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

评论(1

梦在深巷 2024-08-05 20:25:36

您无法将 scriptlet 与标签参数的字符串组合起来,就像您看到 scriptlet 未评估一样,因此请尝试:

<% String s = "<input  type=\"text\"  name=\"text\"  value=\""+ num +"\""  %> 
<bean:message bundle="MyBundle" key="mytext.text" arg0="<%= s %>"/>

请注意,输入标签未像您提供的示例中那样关闭。

You cannot combine scriptlet with a string for a tag argument, like you see the scriptlet is not evaluated so try that:

<% String s = "<input  type=\"text\"  name=\"text\"  value=\""+ num +"\""  %> 
<bean:message bundle="MyBundle" key="mytext.text" arg0="<%= s %>"/>

Take note that the input tag is not closed as in the example you provided.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文