在laravel 4中上传文件

ric*_*cha 1 php upload image file laravel

我已经在Laravel 4中的控制器和路由文件中对此进行了编码,并遇到了诸如"在非对象上调用成员函数move()"之类的错误,

     "Call to a member function getClientOriginalName() on a non-object"
Run Code Online (Sandbox Code Playgroud)

控制器:

class AuthorsController extends BaseController{
    public $restful = true;


    public function post_files()
    {

         $input = Input::all();
        $rules = array(
             'file' => 'image|mime:jpg,gif,png|max:3000',
        );

         $validation = Validator::make($input, $rules);

         if ($validation->fails())
         {
           return Response::make($validation->errors->first(), 400);
         }


        $file = Input::file('file'); // your file upload input field in the form should be named 'file'

        $destinationPath = 'public/uploads/'.str_random(8);
        // $filename = $file->getClientOriginalName();
        $filename = $file['name'];
        //$extension =$file->getClientOriginalExtension(); //if you need extension of the file
        $uploadSuccess = Input::file('file')->move($destinationPath, $filename);



        if( $uploadSuccess ) {
           return Response::json('success', 200); // or do a redirect with some message that file was uploaded
        } else {
           return Response::json('error', 400);
        }
    }
Run Code Online (Sandbox Code Playgroud)

}

路线:

路线::后( 'post_files', 'AuthorsController @ post_files');

小智 22

你的表格是什么样的?

在Laravel 4中,如果要上传文件,则需要打开文件表单

{{  Form::open(array('url' => 'my/path', 'files' => true)) }}
Run Code Online (Sandbox Code Playgroud)

打开文件表单后,方法getClientOriginalName()将起作用.

还要确保您的输入是针对文件的

{{ Form::file('file') }}
Run Code Online (Sandbox Code Playgroud)

  • 对不起OP没有选择你的答案.谢谢你的回答,节省了我很多时间! (3认同)