关于jsp页面上,el表达式相等的问题
我jsp页面上的代码是:<span>loginPlayer.username:${sessionScope.loginPlayer.username}</span><sp...
我jsp页面上的代码是:
<span>loginPlayer.username:${sessionScope.loginPlayer.username }</span>
<span>comment.username:${comment.username }</span>
<c:if test="${sessionScope.loginPlayer.username == comment.username} ">
<span>相等</span>
</c:if>
<c:if test="${sessionScope.loginPlayer.username != comment.username} ">
<span>不相等</span>
</c:if>
但是结果只输出:
loginPlayer.username:zsmj
comment.username:zsmj
不知道为什么了,求各位大侠赐教 展开
<span>loginPlayer.username:${sessionScope.loginPlayer.username }</span>
<span>comment.username:${comment.username }</span>
<c:if test="${sessionScope.loginPlayer.username == comment.username} ">
<span>相等</span>
</c:if>
<c:if test="${sessionScope.loginPlayer.username != comment.username} ">
<span>不相等</span>
</c:if>
但是结果只输出:
loginPlayer.username:zsmj
comment.username:zsmj
不知道为什么了,求各位大侠赐教 展开
6个回答
展开全部
你好,JSTL就是这么用啊,我也是百思不得其解,我把你代码复制过去就不出来,最后我自己把那段代码敲了一遍,出来了.
终于明白你的代码错在哪儿了!
<c:if test="${sessionScope.loginPlayer.username == comment.username} ">
^
你注意上面这句话,倒数第三个字符,是一个中文空格!把这个删除掉就好了(因为百度编辑框的问题上面的箭头可能不准,但你数数倒数第三个字符吧),因为JSTL判断时,会把那个中文空格也作为判断条件了,所以就出问题了。
终于明白你的代码错在哪儿了!
<c:if test="${sessionScope.loginPlayer.username == comment.username} ">
^
你注意上面这句话,倒数第三个字符,是一个中文空格!把这个删除掉就好了(因为百度编辑框的问题上面的箭头可能不准,但你数数倒数第三个字符吧),因为JSTL判断时,会把那个中文空格也作为判断条件了,所以就出问题了。
2016-07-30 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
jsp页面上,el表达式相等的判断方法:
对于string的比较方法有test方法加表达式,写法如下:
<c:if test="${user.comLanguage=='ger'}">
或者是<c:if test="${user.comLanguage eq 'ger'}">
在el表达式中常用的比较运算符的写法:
• == or eq 等于
• != or ne 不等于
• < or lt 小于
• > or gt 大于
• <= or le 小于等于
• >= or ge 大于等于
对于string的比较方法有test方法加表达式,写法如下:
<c:if test="${user.comLanguage=='ger'}">
或者是<c:if test="${user.comLanguage eq 'ger'}">
在el表达式中常用的比较运算符的写法:
• == or eq 等于
• != or ne 不等于
• < or lt 小于
• > or gt 大于
• <= or le 小于等于
• >= or ge 大于等于
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
请再做如下测试
<span>loginPlayer.username:${sessionScope.loginPlayer.username }</span>
<span>comment.username:${comment.username }</span>
${sessionScope.loginPlayer.username == comment.username}
${sessionScope.loginPlayer.username != comment.username}
<c:if test="${sessionScope.loginPlayer.username == comment.username} ">
<span>相等</span>
</c:if>
<c:if test="${sessionScope.loginPlayer.username != comment.username} ">
<span>不相等</span>
</c:if>
<span>loginPlayer.username:${sessionScope.loginPlayer.username }</span>
<span>comment.username:${comment.username }</span>
${sessionScope.loginPlayer.username == comment.username}
${sessionScope.loginPlayer.username != comment.username}
<c:if test="${sessionScope.loginPlayer.username == comment.username} ">
<span>相等</span>
</c:if>
<c:if test="${sessionScope.loginPlayer.username != comment.username} ">
<span>不相等</span>
</c:if>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
但是我属性名全小写应该不会有错的前几天做个项目用EL表达式在别人电脑上说了半天,你又不把你报的异常给贴出来,胡乱猜什么啊? 如果只是针javax.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
test后的表达式出错了吧,你查查资料表达式怎么写的 我忘了 等待别人更好的回答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询