JQuery ajax use json communicate with server

1343 단어 jQuery ajax
오 랜 만 에 글 을 써 서 나 도 간 지 러 워, 헤헤.지금 글 을 한 편 씁 니 다.
 
자, 요즘 조사 임무 가 많아 서 미 처 쓰 지 못 했 습 니 다.
 
자, 시작.
 
1. 내 가 오늘 할 말 은 모두 가 이미 알 고 있 을 것 이다.어떻게 JQuery 로 백 스테이지 에 접근 하 는 지, 상호작용 하 는 방식 은 JSon 입 니 다. 형 에 게 이것 은 비교적 간단 합 니 다. 헤헤
여기 서도 나 를 힐끗 봐, 내 가 할 수 있 을 거 야.
 
2. 서버 쪽 code 보 여주 기
 
List<Person> persons = personService.getPersonList();  
response.setContentType("text/html;charset=utf-8");  
response.setCharacterEncoding("utf-8");  
PrintWriter pw= response.getWriter();  
JSONArray json_ps = JSONArray.fromObject(persons);  
pw.write(json_ps.toString());  

 
 이것 은 표절 한 것 이다.제 목적 은 백 스테이지 가 아니에요.
 
3. JQuery 코드
 
 
$.post(
		'tableoperation.htm', 
		{}, 
		function (data) {
			console.log(data.column);
		}
);
 
 
됐어.
 
var person = '{"id":5,"name":"aa","age":25,"high":155.00}';  
 
 
String personJ = request.getParameter("personStr");  
        JSONObject jsonObject = JSONObject.fromObject(personJ);  
        Person person = (Person)JSONObject.toBean(jsonObject,Person.class);  
 
 

좋은 웹페이지 즐겨찾기