一、ajax默认与服务器交互,采用json格式。导入JAR包jackson
jackson-annotations-2.9.8.jar
jackson-core-2.9.8.jar
jackson-databind-2.9.8.jar
二、使用jquery
body中使用控件:
$(document).ready(function(){
$("#testJson").click(function(){
$.post(
"handler/testJson",
{"stuName":"test","stuAge":22,"stuNo":5},
function(result){
for(var i=0;i
alert(result[i].stuName);
}
}
)
})
})
三、后端servlet中使用@ResponseBody,告诉spring mvc ,此时的返回值不是一个View页面,而是直接写入 HTTP response body 中
@ResponseBody//告诉spring mvc ,此时的返回值不是一个View页面,而是直接写入 HTTP response body 中,以json格式传输给前端
@RequestMapping("testJson")
public List testJson(Student student){
Student stu1=new Student();
stu1.setStuNo(1);
stu1.setStuName("zzz");
stu1.setStuAge(28);
List students=new ArrayList<>();
students.add(student);
students.add(stu1);
return students;
}