ajax请求struts 2中的操作不返回任何视图
我有一个用于区域设置选择的下拉列表,当用户更改它时,我向一个设置会话边界的操作发送一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以返回 HTTP 200 OK,这应该是一个空的成功响应。
我会制作一个全局结果,以便您可以在任何操作中使用它。
You can return an HTTP 200 OK, which should be an empty, successful response.
I would make a global result so that you can use it any action.