我在 React 中有这个带有 axios 的 POST 请求:
postRunSimulation(simulationId) {
var requestAnalysis = `${configFile.web.backend}analysis/${simulationId}/run`;
return axios.post(requestAnalysis)
.then(function (response) {
return response.headers;
}, function(error) {
throw new Error('An error occurred : ' + error.status + ' - ' + error.statusText);
});
},
我得到的对象有一个headers
属性,但它是空的。如果我与 Postman 打同样的电话,我会得到标题。我究竟做错了什么 ?