检查 JSP 中属性文件的值是否相等
我正在使用属性文件来自定义消息,这意味着当我在属性文件中设置优先级时,我可以使用
标记来测试 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个
var
属性,允许您将捆绑包值设置为页面范围变量。这样就可以通过
${priorityKey}
来使用它。然后您可以在
中使用它。The
<fmt:message>
has avar
attribute which allows you to set the bundle value as a page scoped variable.This way it's available by
${priorityKey}
. You could then just use it as such in the<c:if>
.也许这个组合会对您有所帮助:
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.