简体   繁体   English

在laravel 4中上传文件

[英]File upload in laravel 4

I have coded this in controller and routes file in Laravel 4 and met with the errors like "Call to a member function move() on a non-object" and 我已经在Laravel 4的控制器和路由文件中对此进行了编码,并遇到了诸如“在非对象上调用成员函数move()”之类的错误,并且

     "Call to a member function getClientOriginalName() on a non-object"

Controller: 控制器:

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);
        }
    }

} }

Routes: 路线:

Route::post('post_files','AuthorsController@post_files'); 路线:: post('post_files','AuthorsController @ post_files');

What does your form look like? 您的表格是什么样的?

In Laravel 4 if you are uploading a file you need to open the form for files 在Laravel 4中,如果要上传文件,则需要打开文件表单

{{  Form::open(array('url' => 'my/path', 'files' => true)) }}

Once you open your form for files the method getClientOriginalName() will work. 打开文件表单后,方法getClientOriginalName()将起作用。

also make sure that your input is for a file 还要确保您输入的是文件

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM