gpt4 book ai didi

java - 如何在运行时设置响应类型(Spring MVC)

转载 作者:行者123 更新时间:2023-12-01 11:07:03 24 4
gpt4 key购买 nike

我正在开发一个 Spring MVC 应用程序,我需要在其中验证表单。我的问题是:我想根据某些逻辑更改从我的方法返回数据的处理。

比如我有一个注册用户页面!如果用户字段有效,我需要向注册页面上的 ajax 发送一条消息。但如果它们无效,我需要返回 View 名称(或进行重定向)。我该怎么做?这是我的代码:

@RequestMapping(value = "save_user", method = RequestMethod.POST)
public String saveUser(@Valid User user, BindingResult result) {
if(result.hasErrors()) {
return "common/add_user"; // Here I need to return the view name or do redirect
} else {
userManager.add(user);
return "success... bla bla bla"; // Here I need to return some message.
}
}

最佳答案

我认为你可以这样做:

@RequestMapping(value = "save_user", method = RequestMethod.POST)
@ResponseBody
public String saveUser(@Valid User user, BindingResult result) {
if(result.hasErrors()) {
return "common/add_user"; // Here I need to return the view name or do redirect
} else {
userManager.add(user);
return "success... bla bla bla"; // Here I need to return some message.
}
}

在你的ajax中,你可以获得响应数据

$.ajax({
type: "POST",
url: "save_user",
data: $("#user").serialize(),
success: function(data) {
//get response data and process it
...
}
});

希望这有帮助!

关于java - 如何在运行时设置响应类型(Spring MVC),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32839702/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com