首页 > 代码库 > Ajax && json(原始)
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 = "http://www.mamicode.com/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(原始)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。