我正在阅读具有单个字符的 url 参数。它将是Y
或N
。我必须写一个条件来检查它是否Y
或N
并相应地做一些事情。这是我写的,但似乎不起作用(总是去别的)。网址是
http://www.helloworld.com/showInfo?thecountry=us&theconditionTypeInUrl=Y
<s:set var="theUrl" value="%{#parameters.theconditionTypeInUrl}" />
<s:if test="%{#theUrl == 'Y'}">
</s:if>
<s:else>
</s:else>
我也试过
<s:set var="theUrl" value='%{#parameters.theconditionTypeInUrl}' />
<s:if test='%{#theUrl == "Y"}'>
</s:if>
<s:else>
</s:else>
struts.xml 包含
<action name="showInfo" class="showInfoAction">
<result name="success" type="tiles">dis.Info</result>
<result name="no_results" type="tiles">dis.noInfo</result>
</action>