如何使用 JSTL 标签检查资源包键是否不存在?
我有一个包含一些可选键的资源文件.如果可选资源键不存在,我设置一个默认值.似乎没有简单的方法来确定资源包中是否存在密钥.所以这就是我正在做的解决它.
I have a resource file that will have some optional keys. If the optional resource key is not present, I set a default instead. It appears that there is no easy way to determine if a key exists in the resource bundle. So this is what I'm doing to get around it.
<fmt:message var="title" key="login.reg.signup.${signupForm.regfrom}.title" />
<c:if test='${fn:startsWith(title, "??")}'>
<fmt:message var="title" key="login.reg.signup.default.title" />
</c:if>
有没有更好的办法?
推荐答案
您可以编写自己的 JSP 标签来执行此操作,然后您就可以这样做:
You could write your own JSP tag that does this, so you can then just do:
<my:message var="title" key="${form}.title" default="default.title"/>
标签实现可以是您当前的 JSP 语法,也可以是 Java 类.
The tag implementation could either be your current JSP syntax, or a Java class.
相关文章