Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要执行以下操作,并且列表可能会增长。有没有更简洁的方法来写这个?类似于 SQL IN 运算符?
<c:if test="${status == 'A' || status == 'E'}">
这有点hacky,但是....如果您可以确定一个永远不会出现在您的状态变量中的字符(这里我使用的是管道字符),您可以执行类似的操作
<c:set var='testVal' value='|${status}|' /> <c:if test="${fn:contains('|A|E|', testVal)}">