Jsp 和 ?: 未按预期工作
我有这段代码:
<c:forEach var="product" items="${products}" begin="${begin}" end="${end}" varStatus="loopStatus" step="1">
<div class="home_app "${loopStatus.index % 2 == 0 ? '' : 'white_bg'}">
当我浏览到 jsp 时,我在 div 中得到了这个:
<div }="" white_bg="" :="" ?="" 0="" 2="=" %="" ${loopstatus.index="" class="home_app ">
I have this code:
<c:forEach var="product" items="${products}" begin="${begin}" end="${end}" varStatus="loopStatus" step="1">
<div class="home_app "${loopStatus.index % 2 == 0 ? '' : 'white_bg'}">
When I browse to the jsp I am getting this in the div:
<div }="" white_bg="" :="" ?="" 0="" 2="=" %="" ${loopstatus.index="" class="home_app ">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个(以粗体更改):
我个人的偏好是以下而不是 ?: 运算符:
Try this (change in bold):
My personal preference is the following instead of the ?: operator:
美元符号前的
"
似乎位置错误。请将其删除。The
"
before the dollar sign seems to be at the wrong place. Remove it.条件运算符(以及模板文本中的 EL)是在 JSP 2.0 中引入的。您运行的 servletconainer 很可能不支持 JSP 2.0,或者将
web.xml
声明为 Servlet 2.2 或更早版本。The conditional operator (and EL in template text) was introduced in JSP 2.0. Chances are that you're running a servletconainer which doesn't support JSP 2.0 or is declaring
web.xml
as Servlet 2.2 or older.