如果我们需要同时执行多个动作,可以参考以下方法处理:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
例如我们有3个动作: <action name="one"> ...... </action> <action name="two"> ...... </action> <action name="three"> ...... </action> 同时执行方法: 1、直接执行one();two();three();三个动作 2、将动作打包进另外一个action,然后执行allin(): <action name="allin"> one();two();three(); </action> 3、直接用action动作执行: action(one,two,three); 如某些动作带参数: action(one(p),two(),three()); |