很抱歉打扰你们所有人。我已多次搜索过。我也试过了可能的解决方案。我使用元标记
设置了csrf_token <meta name="csrf-token" content="{{ csrf_token() }}">
我的POST请求如下所示
tryAuth () {
if (this.$refs.form.validate()) {
let _this = this
axios.post('/trylogin',_this.loginInfo, {
headers: {
//'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]').getAttribute('content')
},
//withCredentials: true
}).then(function(response){
console.log(response.data)
})
.catch(function(error){
})
}
我已经尝试过使用带有和没有标头的情况。 有时响应是可以的,但有时它会显示419错误响应。
我正在使用Laravel 5.5和AXIOS最新版本。 任何帮助,将不胜感激。 我找到了一些解决方案并尝试过,但对我没有用。
谢谢:)