$.ajax应用之请求头headers


$.ajax应用之请求头headers_第1张图片

由于之前一直都是采用请求体发送请求,服务器在应答体李返回数据。和这个不一样;

采用jq的$.ajax()函数发送请求,代码如下

复制代码
$.ajax({
            type: 'POST',
            url: '/token',
            headers:{"appId":appId,"appKey":appKey,"Content-Type":"text/plain;charset=UTF-8"},
            data:"{}",
            success: function(data, status, xhr){
               console.log(xhr);
            },
            error: function(xhr, type){
                window.location.reload();
            }
复制代码

这样写正确,能够正确发送请求,也能正常收到response headers:

$.ajax应用之请求头headers_第2张图片

使用jq的

getAllResponseHeaders()能得到所有response headers,取到的值是str类型;
使用
getResponseHeader('token')能得到token的值;

你可能感兴趣的:(JQuery实例)