Input::file() 返回 null Laravel

2022-08-30 16:15:17

我一直在编写上传脚本,即使我正在使用Laravel内置函数Input::file(),它仍然返回null。我要发布我的家庭控制器代码。

public function handleUpload()
    {
        $user = Auth::user();
        $username = $user->username;
        $userId = $user->id;
        $path_to_users = "users";
        $user_profile_img = 'users/'.$username.$userId.'/'.$username.'image001.jpg';
        $user_path_profile = "users/$username$userId";
        $user_image_name = $username.'image001.jpg';
        if(file_exists($path_to_users))
        {
            if(file_exists("$user_path_profile")){
                $file = Input::file('profile')->move("$user_path_profile/", $user_image_name);
            } else {
            mkdir("$user_path_profile");
            $file = Input::file('profile')->move("$user_path_profile/", $user_image_name);
        }

        } else {
            mkdir("users");
            mkdir("$user_path_profile");
            $file = Input::file('profile')->move("$user_path_profile/", $user_image_name);
        }
    }

当我死亡(var_dump(Input::file('profile'))返回null,这意味着它基本上没有将我的文件作为实际文件。当我使用die(var_dump(Input::get('profile'))时,它会返回图像名称,这意味着我的上传脚本正在工作,但Laravel后端正在失败。这是真的,还是我只是错过了什么?

这是我的HTML表单内容:

@if($user->id == $userProf->id)

                            <div class="fileUpload button-success pure-button">  
                                <span>Upload</span>
                                <form action="{{action('HomeController@handleUpload')}}" method="POST" enctype="multipart/form-data">
                                    <input type="file" name="profile" class="upload" />

                                </form>
                            </div>
                            @endif

答案 1

我在正常形式中遇到了同样的问题。我忘了添加:

enctype="multipart/form-data"

答案 2

我遇到了同样的问题,并意识到我在表格中遗漏了一些东西。使用内置的laravel表单,因为它会自动添加CRSF保护(请参阅 http://laravel.com/docs/html)。无论如何 - 您需要添加到窗体的顶部 - 因此,例如在边栏选项卡模板中,它可能看起来像:'files' => true

{{ Form::open( array('route' => 'admin.store', 'class'=>'form-horizontal', 'files' => true)) }}

{{Form::file('file')}}

{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}

{{ Form::close() }}

推荐