如何使用fetch()在ReactJS中发送HTTP头

时间:2018-04-29 16:31:16

标签: javascript reactjs

const URL = "http://url.com";
fetch(URL).then(res => res.json()).then(json => {
    this.setState({ someData: json });
});

如何使用HTTP标头发送HTTP请求?

3 个答案:

答案 0 :(得分:1)

试试这个

fetch('your_url', { 
   method: 'get', 
   headers: new Headers({
     // Your header content
   })
 });

答案 1 :(得分:0)

您可以将它们传递到char ** argv

fetch()

您可以在here上阅读更多内容。

答案 2 :(得分:0)

fetch()方法中你应该做这样的事情

fetch(url, {
    ...    
    headers: {
       'user-agent': 'Mozilla/4.0 MDN Example',
       'content-type': 'application/json'
    }

有关详细信息,请查看Mozilla Developers documentation