当我发送POST请求时,Laravel在控制器中作为Get请求返回。
我的网址,
http://localhost/walls/app/api/public/api/auth/signup
我的路线,
Route::group(['prefix' => 'auth'], function () {
Route::post('signup', 'AuthenticateController@signup');
});
AuthenticateController,
public function signup(SignupRequest $request) {
return $request;
}
回应是,
GET
{
"user_type": "1",
"name": "shihab",
"email": "shihab@corediary.com",
"password": "123456",
"access_token": "",
"refresh_token": "",
"expiry_date": ""
}
它工作正常,但有时它显示出这种错误。是什么原因,我该如何解决?
答案 0 :(得分:0)
我有一次这样的问题。问题出在路线上 它应该是:
Route::post('/signup', 'AuthenticateController@signup');
并且您必须确保将请求作为POST发送(观看网络)。
抱歉,我无法添加评论