fn:startsWith(var,'value') 的替代方法 - jsp
我的应用程序中有这段代码:
<c:when test="${fn:startsWith(var,'value')}">
<c:set var="other_var" value="x"></c:set>
</c:when>
但我刚刚发现我不允许使用 标准 taglib 1.0 以上的任何版本。
我在这里有什么好的替代方案可以使用吗?
I have the this piece of code on my application:
<c:when test="${fn:startsWith(var,'value')}">
<c:set var="other_var" value="x"></c:set>
</c:when>
But I just find out that I am not allowed to use any version above 1.0 of standard taglib.
Do I have any good alternative to use here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自己创建一个 EL 函数。
创建
/WEB-INF/functions.tld
,如下所示:使用如下:
Create an EL function yourself.
Create
/WEB-INF/functions.tld
which look like follows:Use it as follows: