0
此警告的原因是什麼?警告:表單令牌與會話令牌不匹配null
WARNING: Form token PR78LAIFZJQRTL66GGAJDT61511L6YHN does not match the session token null
JSP:
<s:form method="post" action="test">
<s:token></s:token>
Email:<input name="email" />
</s:form>
struts.xml中:
<action name="test" class="test.RegisterAction">
<interceptor-ref name="defaultStack" />
<interceptor-ref name="token" />
<result name="invalid.token">/error.jsp</result>
<result>/user/success.jsp</result>
<result name="error">/error.jsp</result>
</action>