我使用POST方法从Postman发布值。这适用于API。
我试图通过使用Input :: get('name')获取Controller上的值。 我得到所有空值。任何人都可以建议如何检索它。这适用于GET方法。
提前致谢。
答案 0 :(得分:0)
需要CSRF令牌。
请参阅http://laravel.com/docs/4.2/security#protecting-routes
将此添加到您的表单,添加以下内容...
<input type="hidden" name="_token" value="<?php echo csrf_token(); ?>">