Struts2的那些小细节

1、result中传多个参数,&不允许使用需要转义&即多个参数之间用&隔开

 <result type="redirectAction">showUpdateIndexPicList

shoppingPicList.id=${shoppingPicList.id}&amp;flag=product&amp;flag2=image&amp;message=success</result>

2、使用type=“redirectAction”时,结果就只能写Action的配置名,不能带有后缀:“.action” 

3、使用type=“redirect”时,结果应是action配置名+后缀名 

你可能感兴趣的:(Struts2的那些小细节)