Struts - 在动作之间传递参数

发布于 2024-08-06 05:51:21 字数 411 浏览 3 评论 0原文

我有两个操作 - 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难以启齿的温柔 2024-08-13 05:51:21

您的示例中“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文