Ajax && json(原始)
Posted 个子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax && json(原始)相关的知识,希望对你有一定的参考价值。
function findSend() { $.ajax({ // async: false, // cache: true, type: "POST", url: "InMessageServlet?action=findSend", data: $(‘#receiveForm‘).serialize(),// 你的formid dataType: ‘json‘, // error: function(request) { // }, success: function (data) { // alert(data.success); // window.location.href = "InMessageServlet?action=one"; } }); };
public void findSend(HttpServletRequest request, HttpServletResponse response) throws Exception {
List<InMessage> list = new ArrayList<InMessage>();
InMessage im = new InMessage();
。。。。。。
list.add(im);
JSONArray json = new JSONArray();
for (InMessage a : list) {
JSONObject jo = new JSONObject();
jo.put("mainMessage", a.getMainMessage());
jo.put("sendUserName", a.getSendUserName());
json.put(jo);
}
request.setCharacterEncoding("utf-8");
response.setContentType("text/json");
PrintWriter out = response.getWriter();
out.print(json);
out.flush();
out.close();
}
以上是关于Ajax && json(原始)的主要内容,如果未能解决你的问题,请参考以下文章