如何在 EL 中连接字符串?
显然,你不能使用普通的 + 运算符在 jsp 中附加字符串......至少它对我不起作用。有办法做到吗?我的相关代码片段...
${fn:length(example.name) > 15 ? fn:substring(example.name,0,14) + '...' : example.name} // does not work because of + operator
Apparently, you cannot use the normal + operator to append strings in jsp...at least its not working for me. Is there a way to do it? Fragment of my code that is relevant...
${fn:length(example.name) > 15 ? fn:substring(example.name,0,14) + '...' : example.name} // does not work because of + operator
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EL 不知道字符串连接运算符。相反,您只需将多个 EL 表达式内联在一起即可。
+
运算符在 EL 中专门用于数字的求和运算符。以下是实现此目的的方法之一:
另一种方法是为此使用 EL 函数,其中您可以使用纯 Java 来处理此问题。有关示例,请参阅 JSP 的隐藏功能中我的答案底部附近的“EL 函数”一章/Servlet。你希望最终的结果是这样的
:
EL does not know a string concatenation operator. Instead, you would just inline multiple EL expressions together. The
+
operator is in EL exclusively a sum operator for numbers.Here's one of the ways how you could do it:
Another way is to use an EL function for this wherein you can handle this using pure Java. For an example, see the "EL functions" chapter near the bottom of my answer in Hidden features of JSP/Servlet. You would like to end up as something like:
with