首页 > 开发 > AJAX > 正文

Ajax()方法如何与后台交互

2024-09-01 08:28:07
字体:
来源:转载
供稿:网友

Ajax全称为“Asynchronous JavaScript and XML”(异步JavaScript和XML),是指一种创建交互式网页应用的网页开发技术。Ajax技术是目前在浏览器中通过JavaScript脚本可以使用的所有技术的集合。Ajax以一种崭新的方式来使用所有的这些技术,使得古老的B/S方式的Web开发焕发了新的活力。

ajax()方法是jQuery底层的ajax实现,通过HTTP请求加载远程数据。

$.ajax({type: "GET",url: "handleAjaxRequest.action",data: {paramKey:paramValue},async: true,dataType:"json",success: function(returnedData) {alert(returnedData);//请求成功后的回调函数//returnedData--由服务器返回,并根据 dataType 参数进行处理后的数据;//根据返回的数据进行业务处理},error: function(e) {alert(e);//请求失败时调用此函数}});}

  参数说明:

  type:请求方式,“POST”或者“GET”,默认为“GET”。

  url:发送请求的地址。

  data:要向服务器传递的数据,已key:value的形式书写(id:1)。GET请求会附加到url后面。

  async:默认true,为异步请求,设置为false,则为同步请求。

  dataType:预期服务器返回的数据类型,可以不指定。有xml、html、text等。

  在开发中,使用以上参数已可以满足基本需求。

  如果需要向服务器传递中文参数,可将参数写在url后面,用encodeURI编码就可以了。

var chinese = "中文";var urlTemp = "handleAjaxRequest.action?chinese="+chinese;var url = encodeURI(urlTemp);//进行编码$.ajax({type: "GET",url: url,//直接写编码后的urlsuccess: function(returnedData) {alert(returnedData);//请求成功后的回调函数//returnedData--由服务器返回,并根据 dataType 参数进行处理后的数据;//根据返回的数据进行业务处理},error: function(e) {alert(e);//请求失败时调用此函数}});} 

  struts2的action对请求进行处理:

public void handleAjaxRequest() {HttpServletRequest request = ServletActionContext.getRequest();HttpServletResponse response = ServletActionContext.getResponse();//设置返回数据为html文本格式response.setContentType("text/html;charset=utf-");response.setHeader("pragma", "no-cache");response.setHeader("cache-control", "no-cache");PrintWriter out =null;try {String chinese = request.getParameter("chinese");//参数值是中文,需要进行转换chinese = new String(chinese.getBytes("ISO--"),"utf-");System.out.println("chinese is : "+chinese);//业务处理String resultData = "hello world";out = response.getWriter();out.write(resultData);//如果返回json数据,response.setContentType("application/json;charset=utf-");//Gson gson = new Gson();//String result = gson.toJson(resultData);//用Gson将数据转换为json格式//out.write(result);out.flush();}catch(Exception e) {e.printStackTrace();}finally {if(out != null) {out.close();}}}            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表