springmvc+jquery+json
springmvc jquery
// jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title> </title>
<script type="text/javascript" src="/<%=request.getContextPath()%>/js/jquery-2.0.3.min.js"></script>
</head>
<body>
this is a json.jsp!
<hr>
<a href="/springmvc/spring/spring/getChildren">jsontest</a>
<input type="submit" onclick="jsontest()" value="json" >
<script type="text/javascript">
function jsontest(){
$.ajax( {
type : "get",
url : "<%=request.getContextPath()%>/spring/spring/getChildren",
dataType: "json",
success : function(data) {
alert("1:"+data[0].name);
//jauery json
$.each(data,function(idx,item){
//
alert(item.name+" "+item.age);
})
},
error :function(){
alert("2: !");
}
});
}
</script>
</body>
</html><%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title> </title>
<script type="text/javascript" src="/springmvc/js/jquery-2.0.3.min.js"></script>
</head>
<body>
this is a json.jsp!
<hr>
<a href="/springmvc/spring/spring/getChildren">jsontest</a>
<input type="submit" onclick="jsontest()" value="json" >
<hr>
<textarea id="jsonv" rows="10" cols="100"></textarea>
<script type="text/javascript">
function jsontest(){
$.ajax( {
type : "get",
url : "<%=request.getContextPath()%>/spring/spring/getChildren",
dataType: "json",
success : function(data) {
//jauery json
$.each(data,function(idx,item){
//
var temp=$("#jsonv").val();
$("#jsonv").val(temp+","+item.name+":"+item.age);
})
},
error :function(){
alert("2: !");
}
});
}
</script>
</body>
</html>
// controller json
@RequestMapping("getChildren")
public @ResponseBody String getChildren(Long objectId) throws Exception {
List<Person> trees = new ArrayList<Person>();
for(int i=1;i<9;i++){
Person per=new Person("jack"+i,"1"+i);
trees.add(per);
}
return parseJsonTree(trees);
}
private String parseJsonTree(List<Person> trees) {
StringBuilder children = new StringBuilder(140 * trees.size());
children.append("[");
int i=0;
Gson gson = new GsonBuilder().create();//com.google.gson.Gson
for ( Person tree : trees) {
if(i>0){
children.append(",");
}
children.append(gson.toJson(tree));
i++;
}
children.append("]");
return children.toString();
}
:jack1:11,jack2:12,jack3:13,jack4:14,jack5:15,jack6:16,jack7:17,jack8:18
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.