在我的应用中使用Laravel 5.7和Mysql和Vue.js。前端使用Vue.js运行,后端使用Laravel 5.7运行,并且前端和后端都使用“ CORS”连接。(将数据保存到MySQL表)https://github.com/barryvdh/laravel-cors,但是当我运行前端并尝试在控制台中发生错误消息之后,保存数据
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:8000/api/addItem. (Reason: CORS request did not succeed).
我的Product.vue文件中包含以下代码:
methods:{
submitForm(){
this.$http.post("http://localhost:8000/api/addItem",this.item)
.then(function (responce){
this.$router.push('/list')
})
}
}
如何解决此问题?