我的相关请求处理代码如下
@RequestMapping(value = "/customer" , method = RequestMethod.GET)
public String customer(ModelMap modelMap , @RequestParam Integer age) {
modelMap.addAttribute("requestKey", "Hola!");
modelMap.addAttribute("age", age);
return "cust";
}
@RequestMapping(value = "/request" , method = RequestMethod.GET)
public String welcome(ModelMap modelMap , @RequestParam(value = "age" , required = false)Integer age) {
modelMap.addAttribute("requestKey", "Hola!");
modelMap.addAttribute("age", age);
return "request";
}
@RequestMapping(value = "/request" , method = RequestMethod.POST)
public String responseBody(ModelMap modelMap , final @RequestBody Student student){
modelMap.addAttribute("name", student.getName());
modelMap.addAttribute("lastname", student.getLastname());
modelMap.addAttribute("age", student.getAge());
return "request";
}
cust.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Customer</title>
</head>
<body>
<p>${age}</p>
</body>
</html>
request.jsp
<html>
<head>
<title>RequestBody</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
JSONTest = function() {
$.ajax({
url: "customer",
type: "get",
data: {
name: "Okan",
lastname: "Pehlivan",
age:22 },
dataType: "json"
});
};
</script>
</head>
<body>
<p>${requestKey}</p>
<h1>My jQuery JSON Web Page</h1>
<div id="resultDivContainer"></div>
<button type="button" onclick="JSONTest()">JSON</button>
</body>
</html>
我想使用ajax获取请求,并且我有一些参数,(例如,名称= Okan)。我想在cust.jsp上显示任何patameter。当我调试welcome()metod的代码时,年龄分配了我的年龄。我用它的键&#34; age&#34;映射了这个值。 request.jsp文件未更改。
答案 0 :(得分:0)
Ajax调用不会更改视图。它将成功返回同一页面上的参数:function(response){}。如果要更改视图,则需要在单独的方法上进行非ajax GET调用,并传递内联参数,如:
<强>控制器:强>
@RequestMapping(value = "/customer/{name}/{lastname}/{age}" , method = RequestMethod.GET)
public String customer(@PathVariable(value = "name") String name, @PathVariable(value = "lastname") String lastname, @PathVariable(value = "age") String age) {
//code here
return "cust";
}
<强> JSP 强>
window.open("/customer/Okan/Pehlivan/22 ","_self");
它将在cust.jsp上返回
答案 1 :(得分:0)
请求jsp没有更改,因为在AJAX调用之后您没有在页面的任何位置更改它。 您确实发出了请求但未使用响应。 在ajax调用中添加一个成功函数,然后在那里读取数据。 例如:
$.ajax({
url, data , dataType and method as is with an addition of the following :
success : function(responseText){
Set responseText to your <p>
}
});
为了在cust.jsp中显示年龄,需要在调用url时传递request参数。类似于:http://host-path/context-path/customer?age=69
自动装箱应该为请求参数处理int
到Integer
转换,如果您看到异常,请尝试使用int
。
可能有帮助的一些信息:
HTH。