Struts2 中是否存在解决此问题的方法?
<s:if test="%{var < 50}">
<p style="color: red;">The quick brown fox jumped over the lazy brown dog.</p>
</s:if>
<s:elseif test="%{var == 50}">
<p style="color: blue;">The quick brown fox jumped over the lazy brown dog.</p>
</s:elseif>
<s:elseif test="%{var > 50}">
<p style="color: pink;">The quick brown fox jumped over the lazy brown dog.</p>
</s:elseif>
理想情况下,我希望在这里使用 switch 语句,但这似乎不存在。是否有另一种合适的解决方案,而不是输入相同的行并进行细微的更改?