Struts - 在动作之间传递参数
我有两个操作 - ActionA 和 ActionB,我尝试按以下方式使用“action”标签从 ActionA 的结果调用 ActionB
<s:action namespace="/myNameSpace" name="actionB" executeResult="true">
<s:param name="param1" value="Value1"/></s:action>
该标签正在调用“actionB”并且我从 ActionB 获取结果正如我所料,包含在 ActionA 的结果中。但我无法将参数“param1”绑定到 ActionB 中的属性。是否可以以这种方式将参数传递给另一个操作?我非常需要将此 jsp 中的参数绑定到我的操作。请帮忙:(
I have got two actions - ActionA and ActionB, Im trying to invoke ActionB from the result of ActionA using 'action' tag in the following way
<s:action namespace="/myNameSpace" name="actionB" executeResult="true">
<s:param name="param1" value="Value1"/></s:action>
The tag is invoking 'actionB' and Im getting the result from ActionB included into the result of ActionA as I expected. But Im not able to bind the parameter 'param1' to the property in the ActionB. Is it possible to pass parameters to another action in this fashion? I badly need to bind the parameters from this jsp to my action. Please help :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的示例中“param1”的值是固定的。您需要使用类似
<
s:param name="param1" value="%{value1}"/>
的内容。
The value for "param1" in your example is fixed. You need to use something like
<
s:param name="param1" value="%{value1}"/>
instead.