我设置了新的 laravel 5.2 项目,在我的routes.php
文件中我有:
Route::get('/happy', function () {
abort(403,'Unauthorized - its OK :)');
});
Route::post('/sad', function () {
abort(403,'Unauthorized - its not OK :(');
});
对于 GET 我有良好的响应状态代码 = 403,但对于 POST 我得到错误的响应状态代码 = 200。如何使 POST 状态代码正确(= 403)?我使用 body-raw POST mehtod 发送 json (不在这个例子中)。