const URL = "http://url.com";
fetch(URL).then(res => res.json()).then(json => {
this.setState({ someData: json });
});
如何使用HTTP标头发送HTTP请求?
答案 0 :(得分:1)
试试这个
fetch('your_url', {
method: 'get',
headers: new Headers({
// Your header content
})
});
答案 1 :(得分:0)
答案 2 :(得分:0)
在fetch()
方法中你应该做这样的事情
fetch(url, {
...
headers: {
'user-agent': 'Mozilla/4.0 MDN Example',
'content-type': 'application/json'
}
有关详细信息,请查看Mozilla Developers documentation。