Angularjs和jQuery的ajax的请求区别

Angularjs和jQuery的ajax的请求区别

我的主页 www.csxiaoyao.com

原因分析

  Angularjs和jQuery的ajax的请求是不同的。在jquery中,官方文档解释contentType默认是application/x-www-form-urlencoded; charset=UTF-8

contentType (default: ‘application/x-www-form-urlencoded; charset=UTF-8’)
Type: String
When sending data to the server, use this content type. Default is “application/x-www-form-urlencoded; charset=UTF-8”, which is fine for most cases. If you explicitly pass in a content-type to $.ajax(), then it is always sent to the server (even if no data is sent). The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding. Note: For cross-domain requests, setting the content type to anything other than application/x-www-form-urlencoded, multipart/form-data, or text/plain will trigger the browser to send a preflight OPTIONS request to the server.

  而参数data,jquery进行了转换。

dataType: PlainObject or String or Array
Data to be sent to the server. It is converted to a query string, if not already a string. It’s appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the traditional setting (described below).

  此外

Sending Data to the Server
By default, Ajax requests are sent using the GET HTTP method. If the POST method is required, the method can be specified by setting a value for the type option. This option affects how the contents of the data option are sent to the server. POST data will always be transmitted to the server using UTF-8 charset, per the W3C XMLHTTPRequest standard.
The data option can contain either a query string of the form key1=value1&key2=value2, or an object of the form {key1: ‘value1’, key2: ‘value2’}. If the latter form is used, the data is converted into a query string using jQuery.param()before it is sent. This processing can be circumvented by setting processData to false. The processing might be undesirable if you wish to send an XML object to the server; in this case, change the contentType option from application/x-www-form-urlencoded to a more appropriate MIME type.

  所以,jquery将javascript对象转换成字符串传给后台。在SpringMVC中,就可以使用@RequestParam注解或者request.getParameter()方法获取参数。
  而在angular中,$httpcontentType默认值是application/json;charset=UTF-8,这样在后台,SpringMVC通过@RequestParam注解或者request.getParameter()方法是获取不到参数的。

测试效果

  • 使用angular的$http发送ajax请求(jsave)
  • 使用jquery的$ajax发送ajax请求(asave)
  • 使用angular的$http方法按照jquery中的方式发送ajax请求(ajsave)
$scope.asave = function(){
    $.ajax({
        type : 'POST',
        url : '/asave',
        data : {
            name:'csxiaoyao',
            id:'1'
        },
        dataType:'json',
        success : function(data){
            console.log(data);
        }
    });
};
$scope.jsave = function(){
    var user = {
        name : 'csxiaoyao',
        id : '1'
    }
    $http({
        method:'POST',
        url:'/jsave',
        data:user
    }).success(function(data){
        console.log(data);
    });
};
$scope.ajsave = function(){
    var data = 'name=csxiaoyao&id=1'
    $http({
        method: 'POST',
        url: '/ajsave',
        data: data,  // pass in data as strings
        headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'}  
    }).success(function (data) {
        console.log(data);
    });
};

解决方案

  所以,如果想用angular达到相同的效果,有两步操作:
1. 修改Content-Typeapplication/x-www-form-urlencoded; charset=UTF-8
2. 设置请求参数为key=value格式,如果有多个参数,使用&连接

  若一定要使用angular的方式,那后端使用springmvc接受参数需要定义一个有settergetter方法的接受的类即可。

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值