我测试一个
laravel 5.6
应用程序正在运行
localhost:8000
我有一个分开的房间
vue
localhost:8080
.
我想要
external vue
web.php
在拉威尔:
Route::get('/stores/{store}', 'StoresController@show');
我的代码在
:
axios.get('http://localhost:8000/stores/68')///<-- I do have a record of 68 in database.
.then((response) => {
console.log(self.postdata);
}).catch((err) => {
console.log(err);
});
我得到一个错误:
得到
http://localhost:8000/stores/68
我也尝试了IP地址:
axios.get('http://192.168.0.142:8000/stores/68')
但仍然得到错误:
http://192.168.0.142:8000/stores/68
网络::错误连接被拒绝
经过大量阅读,我怀疑是因为
csrf-token
不存在于
外部vue
我如何解决这个问题?
以下是控制台错误的屏幕截图: