webwork xml中传入多个参数的问题

前端之家收集整理的这篇文章主要介绍了webwork xml中传入多个参数的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<action name="backXXXCustomer" class="com.xxx.action.xxx.XXXAction">
<result name="fenpei_xxxg" type="redirect">/xxx.action?actionType=xxxh&xxx2=yes</result>
</action>


由于xml的特殊性,对有些字符辨认的问题,如上写法是不行的,需要转义如下写法即可

<action name="backXXXCustomer" class="com.xxx.action.xxx.XXXAction"> <result name="fenpei_xxxg" type="redirect">/xxx.action?actionType=xxxh&amp;xxx2=yes</result> </action>

原文链接:https://www.f2er.com/xml/296868.html

猜你在找的XML相关文章