我正在使用axios
的get方法。我还设置了CORS
标头,但它总是给我说Cross-Origin Request Blocked
的错误。
Vue.js2:
methods: {
getSliderData () {
axios
.get('/sliders', {
headers: {
'Content-Type': 'Application/json',
'Access-Control-Allow-Origin': '*'
}
})
.then(res => {
console.log(res)
})
.catch(err => {
console.log(err)
})
}
}
错误: 跨域请求被阻止:同源策略禁止读取http://localhost:3000/api/sliders处的远程资源。 (原因:CORS请求未成功。)