检查 JSP 中属性文件的值是否相等

发布于 2024-11-26 21:23:44 字数 341 浏览 0 评论 0原文

我正在使用属性文件来自定义消息,这意味着当我在属性文件中设置优先级时,我可以使用 标记来测试 JSP 中优先级的相等性吗?对于 JSP 中的消息显示,我使用 标记。

例如:

在属性文件中:

priority.key=1

在 jsp 中:

<c:if "<fmt:message "priority.key"\> ==1" >Hi</c:if> 

I am using property file for customizing messages, mean while I am setting priority in the property file, can I test the equality of priority in JSP using <c:if> tag. for message display in JSP I am using <fmt:message> tag.

eg:

in property file:

priority.key=1

in jsp:

<c:if "<fmt:message "priority.key"\> ==1" >Hi</c:if> 

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

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

发布评论

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

评论(2

过期情话 2024-12-03 21:23:44

< /code>有一个 var 属性,允许您将捆绑包值设置为页面范围变量。

<fmt:message key="priority.key" var="priorityKey" />

这样就可以通过 ${priorityKey} 来使用它。然后您可以在 中使用它。

<c:if test="${priorityKey == 1}">Hi</c:if>

The <fmt:message> has a var attribute which allows you to set the bundle value as a page scoped variable.

<fmt:message key="priority.key" var="priorityKey" />

This way it's available by ${priorityKey}. You could then just use it as such in the <c:if>.

<c:if test="${priorityKey == 1}">Hi</c:if>
苏别ゝ 2024-12-03 21:23:44

也许这个组合会对您有所帮助:

http://www.roseindia.net/jstl/jstl -el.shtml
http://www.roseindia.net/jsp/simple-jsp-example /JSTLPropertyAccess.shtml

就我个人而言,很难理解您的问题。请添加更多描述或代码。

May be this combination will help you:

http://www.roseindia.net/jstl/jstl-el.shtml and
http://www.roseindia.net/jsp/simple-jsp-example/JSTLPropertyAccess.shtml

Personally for me it is very hard to understand your question. Please add more description or code.

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