Axios没有在请求中放置原始标头

时间:2019-11-28 17:01:51

标签: node.js reactjs npm axios

我在反应中使用axios,他没有将Origin标头放在请求中,所以他给了服务器端cors(nodejs)问题。

import axios from 'axios';

const api = axios.create({baseURL: window.location.protocol + '//' + window.location.hostname + '/node/api/', withCredentials: true});

export default api;

查看:https://i.stack.imgur.com/RTwh5.png

1 个答案:

答案 0 :(得分:0)

我希望这会有所帮助。

import axios from 'axios';
axios.defaults.withCredentials = true; 
const api = axios.create({baseURL: window.location.protocol + '//' + window.location.hostname + '/node/api/'});

export default api;