Laravel上传多文件在控制器内获取NULL

时间:2015-05-22 13:16:12

标签: php laravel

我尝试使用laravel4上传多个文件。

查看:

{{ Form::open($address,array('route' => array('address.update', $address->id, 'files'=>true))) }}

{{ Form::file('images[]', ['multiple' => true]) }}

{{ Form::close() }}

控制器:

选择一些文件并尝试将文件发送到控制器后我在控制器内获取NULL。例如:

 public function postUpdate()
    {
        $files = Input::file('images');
        dd($files);
    }
此阶段的

$filesNULL,为什么?

1 个答案:

答案 0 :(得分:1)

我认为问题出在Form::open()标记中。尝试类似的东西。

{{Form::open(array('route' => array('address.update', $address->id),'files'=>true))}}
{{Form::file('images[]',array('multiple'=>'true')) }}
{{ Form::close() }}