我正在尝试在Spring MVC中实现以下场景。但我面临问题而无法确定正确的方法。 我正在使用jsonRequest / jsonResone(Restful Webservices)
1.我有一个SignUP.jsp表单,其中包含几个需要提交给控制器的字段。
<form method="POST" onsubmit="javascript:signupObj.signup()">
<table>
<tr>
<td>Username : </td>
<td><input id="username"/></td>
</tr>
<tr>
<td>Password :</td>
<td><input id="password"/></td>
</tr>
<tr>
<td>
<button type="submit">Submit</button>
</td>
</tr>
</table>
</form>
2.on提交表格会调用下面提到的注册javascript功能
var signupObj = {
showSignup : function() {
//There are Two Ways to Declare Function The Other Way is function showSignup().Checkout the reasons
$.ajax({
type: "GET",
url: "showSignup",
success: function(response) {
$("#signupView").html( response );
}
});
},
signup : function() {
alert("In Signup function");
var input = '{';
input += '"username":"'+$('#username').val()+'",';
input += '"password":"'+$('#password').val()+'"';
input += '}';
alert(input);
$.ajax({
type: "POST",
url : "signup",
contentType: "application/json; charset=utf-8",
data: input,
dataFilter: function (response) {
return response;
},
// crossDomain: true,
async:false,
success: (function(data) {
alert("In ajax Sucess");
alert(data.profileID);
signupObj.redirectview("success",data);
}),
error : function(data,textStatus,error){
alert("In ajax Failure");
alert(error);
signupObj.redirectview("failure",data);
},
dataType: "json"
});
alert("ajax finished");
},
redirectview : function(message,data) {
alert("inside redirect view");
if(message == "success"){
url = "success";
}
else{
url = "error";
}
$.ajax({
type: "POST",
url : "success",
contentType: "application/json; charset=utf-8",
data: data,
async:false,
dataType: "json",
dataFilter: function (response) {
return response;
},
// crossDomain: true,
success: (function(data) {
alert("data");
}),
error : function(data,textStatus,error){
alert("In ajax Failure redirect");
alert(error);
},
}); }
};
3.以上javascript函数对控制器执行ajax调用(输入为jsonRequest)
@RequestMapping(value="/signup",method=RequestMethod.POST)
@ResponseBody
public ProfileDTO signup(@RequestBody LoginDTO loginDTO) {
ProfileDTO profileDto = new ProfileDTO();
//In case no errors in backend logic
profileDto.setError(null);
profileDto.setProfileID("profileID");
profileDto.setProfileName("profileName");
System.out.println("Submitting SignUP Form Will Return ProfileID");
return profileDto;
}
//Below method is for success view
@RequestMapping(value="/success",method=RequestMethod.POST)
@ResponseBody
public String checkSignup(@RequestBody ProfileDTO profileDto,HttpServletRequest httprequest,HttpServletResponse httpResponse
) {
//model.addAttribute(loginDTO);
System.out.println("In loginSuccess");
return "loginSucess";
}
4. Controller提供profileDTO的JSON响应。现在基于profileDTO.getErrors,我必须调用loginSuccess.jsp或loginFailure.jsp
现在我的问题是:
1)如何在ajax调用中使用jsonResponse重定向到loginSuccess.jsp或loginFailure.jsp以及如何将我的profileDTO数据传递给loginSuccess视图。
2.)请建议我应该遵循的最佳实践。
答案 0 :(得分:0)
1。)首先,您可以在{javascript中reduce your code
,如下所示,直接serialize
表单对象。
var signupObj = {
signup : function() {
alert("In Signup function");
$.ajax({
type: "POST",
url : "signup",
data: $('#myForm').serialize(),// add "myForm" as the form id
async:false,
success: (function(data) {
alert("data"+data);
redirectView("success",data);
})
error : function(data, textStatus, errorThrown) {
alert(error_occured);
redirectView("error",data);
}
});
}
};
<script
function redirectView(message,data){
var url = "";
if(message == "success"){
url = "/success";
}else{
url = "/error";
}
$.ajax({
type: "POST",
url : url,
data: data
async:false,
success: (function(data) {
alert("data"+data);
})
error : function(data, textStatus, errorThrown) {
alert(error_occured);
}
});
}
</script>
2.。)从控制器本身重定向success
或failure
视图。
3.。)将我的个人资料DTO数据传递到loginSuccess
视图。
Spring MVC,从版本3开始,允许您使用Controller中的@ResponseBody注释返回直接转换为JSON的对象,如下所示
@RequestMapping(value="/signup",method=RequestMethod.POST)
@ResponseBody
public ProfileDTO signup(@ModelAttribute("LoginDTO") LoginDTO loginDTO,BindingResult bindingResult) {
ProfileDTO profileDto = new ProfileDTO();
//In case no errors in backend logic
profileDto.setError(null);
profileDto.setProfileID("profileID");
profileDto.setProfileName("profileName");
System.out.println("Submitting SignUP Form Will Return ProfileID");
return profileDto;
}
如果从控制器转发
使用prefix of forward,
Spring将获得指定路径的RequestDispatcher
并转发给它。该流程的一部分将包括从为该请求处理周期创建的ModelAndView
中获取模型,并将其所有属性放入HttpServletRequest
属性。
Servlet容器将使用RequestDispatcher#forward(..)
并再次使用您的DispatcherServlet
来处理它。您的DispatcherServlet
将为此处理周期创建一个新的ModelAndView
新模型。因此,此模型不包含之前的任何属性,但HttpServletRequest
属性包含。
在你的情况下,这个
modelMap.put("key", "value");
将最终进入
HttpServletRequest request = ...;
request.getAttribute("key");