-
MIME Media Type : application/json
对于xml则是 text/xml -
学会使用org.json 以及 google-gson两个json util类
-
JQuery操作AJAX
$.ajax({ type : “POST”, url : “servlet”, dataType : “html/xml/json”, data : {name : “name"}, success : function(returnData){ alert(returnData); } });
-
也可以单独使用
$.post(“servlet”,{name : “name” },function(returnData,status){ alert(returnData); });
-
response.setContentType(“text/xml;charset=utf-8”); 这样前面就不需要写dataType,因为http返回消息定义了返回类型。
-
response.setHeader(“pragma”,”no-cache”);
response.setHeader(“cache-control”,”no-cache”);
这样保证了每次ajax请求都会发出,而不会调用cache。