ajax请求struts 2中的操作不返回任何视图

发布于 2024-10-21 21:23:36 字数 94 浏览 0 评论 0原文

我有一个用于区域设置选择的下拉列表,当用户更改它时,我向一个设置会话边界的操作发送一个ajax请求

现在的问题是我应该从该操作的execute()方法返回什么

I have a drop down list for locale selection, when user changes it then i send an ajax request to an action where i set a session perimeter

Now the problem is that what should i return from the execute() method of the action

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

昵称有卵用 2024-10-28 21:23:36

您可以返回 HTTP 200 OK,这应该是一个空的成功响应。

<result name="empty" type="httpheader">
    <param name="status">200</param>
</result>

我会制作一个全局结果,以便您可以在任何操作中使用它。

You can return an HTTP 200 OK, which should be an empty, successful response.

<result name="empty" type="httpheader">
    <param name="status">200</param>
</result>

I would make a global result so that you can use it any action.

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