fetch(url, {
method,
mode: 'cors',
headers: {
"Test": "2222"
}
})
.then(response => response.json())
介面404
淡淡烟草味2017-05-19 10:49:35
var headers = new Headers();
headers.append('Accept', 'application/json');
var request = new Request(URL, {
headers: headers,
method:"GET"
});
fetch(request).then(function(response) {
console.log(response);
});
好像發送的是headers 對象,還有貌似你的method 也沒有給值,404是因為你的url 不存在的吧,先用postman 測試下。