我在反应中使用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;
答案 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;