fmt 标签的问题

发布于 2024-10-09 18:43:06 字数 750 浏览 2 评论 0 原文

我目前正在开发一个 spring 项目,我必须在 JSP 中使用 fmt 标签。事实上,fmt 标签对我来说工作得很好,并且它从 messages.properties 文件中读取正确的值。

例如:

<fmt:message key="General.Settings"/>

.properties 文件中:

General.Settings=Settings

它读取得非常完美。

现在,将 fmt 标记放入另一个 JSTL 标记内时存在问题。

例如:

<input name="commit" value= <fmt:message key="AllMessages.PostThisMessage"/>
                    type="submit" onclick="return isEmpty();" />

.properties 文件内:

AllMessages.PostThisMessage=Post this message

但它仅显示单词“Post”而不是“Post this message”,

并且与其他 JSTL 标记内的所有其他 fmt 标记相同。

有什么建议吗?

I am currently working on a spring project, and I had to use fmt tags inside my JSPs. In fact fmt tags are working fine for me, and its reading the right value from messages.properties file.

for example:

<fmt:message key="General.Settings"/>

in the .properties file:

General.Settings=Settings

it reads it just perfect.

Now, the issue exists when puting the fmt tag inside another JSTL tags.

For example:

<input name="commit" value= <fmt:message key="AllMessages.PostThisMessage"/>
                    type="submit" onclick="return isEmpty();" />

Inside .properties file:

AllMessages.PostThisMessage=Post this message

but it displays only the word "Post" instead of "Post this message"

and same with all other fmt tags inside other JSTL tags.

any suggestions?

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

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

发布评论

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

评论(4

指尖上的星空 2024-10-16 18:43:06

不要像这样嵌套标签,这会造成混乱并且容易出错。最好做这样的事情:

<fmt:message key="AllMessages.PostThisMessage" var="myMessage"/>
<input name="commit" value="${myMessage}" type="submit" onclick="return isEmpty();" />

如果您确实使用了这种语法:

value= <fmt:message key="AllMessages.PostThisMessage"/>

那么它能起作用真是一个奇迹,因为这会生成无效的 HTML。

Don't nest your tags like that, it's confusing and error-prone. Better to do this sort of thing:

<fmt:message key="AllMessages.PostThisMessage" var="myMessage"/>
<input name="commit" value="${myMessage}" type="submit" onclick="return isEmpty();" />

If you really were using this syntax:

value= <fmt:message key="AllMessages.PostThisMessage"/>

Then it's a marvel it worked at all, since that would generate invalid HTML.

君勿笑 2024-10-16 18:43:06

您忘记了 value 参数的引号:

"类型 =“提交” onclick =“返回 isEmpty();” />

但正如已经提到的,嵌套标签更难阅读。

You forgot the quotes for the value parameter:

<input name="commit" value="<fmt:message key="AllMessages.PostThisMessage"/>" type="submit" onclick="return isEmpty();" />

But as already mentioned, nested tags are harder to read.

三生池水覆流年 2024-10-16 18:43:06

不确定是否是因为我的 JST 库版本问题,但我无法直接在 上设置 var。我必须创建 ac:set 才能使其工作:

<c:set var="buttonEdit">
    <fmt:message key="EDIT" bundle="${yourBundle}"/>
</c:set>
<input class="button edit" type="submit" title="your Title" value="${buttonEdit}"  />

我是 JSP 新手,所以我希望这很好。 ;-)

Not sure if it's because of my version of the JST Library, but I couldn't set the var directly on the <fmt:message />. I had to create a c:set for it to work:

<c:set var="buttonEdit">
    <fmt:message key="EDIT" bundle="${yourBundle}"/>
</c:set>
<input class="button edit" type="submit" title="your Title" value="${buttonEdit}"  />

I'm new to JSP so I hope that's good. ;-)

猫卆 2024-10-16 18:43:06

在 value 属性周围添加单引号就可以了。

Adding single quotes around the value attribute will do the trick.

<input name="commit" value='<fmt:message key="AllMessages.PostThisMessage"/>'
type="submit" onclick="return isEmpty();" />

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