码迷,mamicode.com
首页 > Web开发 > 详细

关于如何接受异步ajax请求返回前台的数据

时间:2016-11-30 17:42:38      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:ajax   前台获取异步数据   

1、第一种方式通过bean,后台需封装成json数据格式,前台paseJSON();

public void checkCode() {

    ResponseMessage rm = new ResponseMessage(true,null);

    String hql = "from TblWrPeople t where t.wrPeopleCode=‘"+code+"‘ and t.delFlag=‘"+Constants.DELFLAGA+"‘";

    List<TblWrPeople> tblWrPeopleList = (List<TblWrPeople>)this.workResService.find(hql);

    if (tblWrPeopleList != null && tblWrPeopleList.size() > 0) {

rm.setSuccess(false);

rm.setErrorMsg("数据库中已存在该代号,请重新录入");

this.responseAJAX(JSONObject.fromObject(rm).toString(), getResponse());

}

}

前台获取:

function checkCode() {

var code = $("#wrPeopleCode").val();

$.post(‘workRes_checkCode.action‘,{"code":code},function(result){

result = $.parseJSON(result);

if (result.success == false){

                 alert(result.errorMsg);

                 $("#wrPeopleCode").val(‘‘);

             }

});

}

2、后台直接返回一个String类型的字符串,前台的话不再需要parseJSON,直接获取result即可;


本文出自 “画江湖之不良人” 博客,谢绝转载!

关于如何接受异步ajax请求返回前台的数据

标签:ajax   前台获取异步数据   

原文地址:http://751756016.blog.51cto.com/6308835/1878144

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!