在reactjs中的AJAX请求中的问题

时间:2018-06-05 07:55:25

标签: ajax

我正在尝试使用reactjs作为前端框架和laravel 5.6作为后端框架来开发应用程序。我正在尝试发送如下的

的AJAX请求
import Auth from '../services/Auth';

var address_data = {
        name        :'foysal',                    
        address     :'foysal',
        telephone_no:'foysal',
        email       :'foysal',
}



fetch('http://127.0.0.1:8000/api/addresses/store/',address_data, {
        method: 'POST',
        headers: {
            'Accept': 'application/json',
            'Content-Type': 'application/json',
            'Authorization': 'Bearer ' + Auth.getToken(),
        },
        body: JSON.stringify()
    })
    .then((response) => response.json())
    .then((responseData) => {
        console.log(responseData);
    })

我遇到错误

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试更改您的抓取请求,以启动此{/ 1>动作动词

POST