NGROK - 500 Internal Server Error on POST /Login
如图所示,Ngrok效果很好,一切都显示出来。但是,在执行登录等POST请求时,我收到500 - 内部服务器错误。为什么这样以及如何解决这个问题?是否与Laravel的CSRF保护(使用v5.3)有关?提前谢谢!
...看起来错误如下,因为它返回:
VM61 jquery-3.2.1.min.js:4 POST http://xxx.ngrok.io/login 500(内部服务器错误)
send @ VM61 jquery-3.2.1.min.js:4
ajax @ VM61 jquery-3.2.1.min.js:4
(anonymous) @ VM62 app.js:195
dispatch @ VM61 jquery-3.2.1.min.js:3
q.handle @ VM61 jquery-3.2.1.min.js:3
app.js看起来像这样:
$.ajax({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
'contentType': 'application/json; charset=utf-8'
},
url:'/login',
type:'POST',
data:formData,
})
可能有任何帮助。谢谢!