`

struts2 标签 if 判断一个字符

阅读更多
注意写法
Why won't the 'if' tag evaluate a one cha

If care is not taken with the quoting of literals, the expression language (OGNL) will misinterpret a char as a String.
错误写法
if test="aStringProperty == 'A'"> Why doesn't this work when myString is equal to A? if>
The solution is simple: flip the double and single quotes.

正确写法
if test='aStringProperty == "A"'> This works! if>
Another solution is to escape the double quotes in the String.

正确写法
if test="aStringProperty == \"A\""> This works too! if>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics