단일 문자가있는 url 매개 변수를 읽습니다. Y
또는 N
중 하나입니다. 나는 그것이 Y
또는 N
인지 확인하고 그에 따라 뭔가를 할 조건을 써야합니다. 이것은 내가 쓴 것이지만 작동하지 않는 것입니다 (항상 다른 사람에게로갑니다). URL은 Struts 2에서 URL 요청 매개 변수의 단일 문자를 비교하는 방법
http://wwww.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>
제가 또한 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>
'struts.xml'을 게시하십시오. –
을 사용 해보고 params 인터셉터가 기본 인터셉터 스택에 구성되어 있는지 확인하십시오. –매개 변수 intercetor에서 구성해야하는 것은 무엇입니까? 설명 해주십시오. 나는 struts2를 알고있다. –