我是Laravel的新手,我面临着一个奇怪的问题.在路由中,我通过POST和GET方法调用函数. GET返回数据但POST不返回.这是我的简单代码: 对于POST Route::post('register', function() { echo 'we are here';}); 对
GET返回数据但POST不返回.这是我的简单代码:
对于POST
Route::post('register', function() { echo 'we are here'; });
对于GET:
Route::get('register', function() { echo 'we are here'; });
请帮忙.谢谢.
您需要在每个请求(GET除外)上包含CSRF令牌.https://laravel.com/docs/5.2/routing#csrf-protection