当前位置: 代码迷 >> J2EE >> struts2中在地址后传递参数的有关问题
  详细解决方案

struts2中在地址后传递参数的有关问题

热度:128   发布时间:2016-04-22 02:32:24.0
struts2中在地址后传递参数的问题
本人刚学习struts2谢了一个action,想在传递两个参数,如下,但是两个参数时总是提示错误,一个参数则没有问题,求解释:
<action name="exportAction" class="actions.ExportAction">
<result name="student" type="chain">downloadAction_student?a=1&b=2</result>
<result name="businesscard" type="chain">downloadAction_bussinesscard</result>
</action>

------解决方案--------------------
可以在result标签里面,写param标签

<parma name="a">1</param>
<parma name="b">2</param>
------解决方案--------------------
改成这样试试 
<result name="student" type="chain">downloadAction_student?a=1&amp;b=2</result>
  相关解决方案