public function foo(Request $request) { $foo = $request->get('a'); $foo = $request->input('a'); }
Gibt es hier einen Unterschied zwischen der Verwendung von get und input?
不一样。
大概看了下input获取到数组后简单做了下取出操作,get有一套更完善的取出机制,也有很多抛异常操作。
具体LZ可以去翻翻源代码看看:input方法在:/vendor/laravel/framework/src/Illuminate/Http/Request.phpget方法在:/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/ParameterBag.php
/vendor/laravel/framework/src/Illuminate/Http/Request.php
/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/ParameterBag.php
PS,我手上目前是4.2
不一样。
大概看了下input获取到数组后简单做了下取出操作,
get有一套更完善的取出机制,也有很多抛异常操作。
具体LZ可以去翻翻源代码看看:
input方法在:
/vendor/laravel/framework/src/Illuminate/Http/Request.php
get方法在:
/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/ParameterBag.php
PS,我手上目前是4.2