axios.get怎么传headers

axios.get怎么传headers,第1张

el: '.box',

data: {},

methods: {

get: function () {

axios({

method: 'post',

url: 'post.php',

data: {

a:'1'

}

}).then(function (response) {

alert(response.data)

})

.catch(function (error) {

alert(error)

})

}

}

})

Header可以通过Request提供的.add_header()方法进行添加示例代码如下:

# -*- coding:utf-8 -*-

import urllib2

import urllib

url = 'http://ah.example.com'

half_url = u'/servlet/av/jd?ai=782&ji=2624743&sn=I'

#构造get请求

req = urllib2.Request(url+half_url.encode('utf-8'))

#添加header

req.add_header('Accept-Encoding', 'gzip,deflate')

req.add_header('User-Agent','Mozilla/5.0')

response = urllib2.urlopen(req)

print response


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11886491.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存