Laravel和Dropzone-如何在服务器端获取文件 [英] Laravel and Dropzone - How to get files in server side

查看:107
本文介绍了Laravel和Dropzone-如何在服务器端获取文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在laravel项目中使用dropzone,但无法在服务器端获取文件.

I'm trying to use dropzone in laravel project but I can't get the files in server side.

我的刀片html代码:

My blade html code:

{!! Form::open(['id' => 'create-intervention-form', 'url' => '/create-intervention', 'method' => 'post', 'class' => '']) !!}
   <div id="multimedia" class="data new dropzone">

   </div>
   <div class="btn-new-bottom">
      <a href="#new-intervention">Criar Intervenção</a>
   </div>
{!! Form::close() !!}

在jquery中,我输入了以下代码:

In jquery I put this code:

$("div#multimedia").dropzone({
          url: "/create-intervention",
          paramName: "file", // The name that will be used to transfer the file
          maxFilesize: 1024,
          autoProcessQueue: false
        });

要提交表单,我需要提交一个jquery函数.在控制器中,我尝试获取$files[] = Input::file('file');,但此返回null.

To submit the form I have a jquery function to submit. In controller I try to get $files[] = Input::file('file'); but this return null.

控制器:

public function store(Request $request)
    {
      $rules = array(
      );

      // do the validation ----------------------------------
      // validate against the inputs from our form
      $validator = Validator::make(Input::all(), $rules);

      // check if the validator failed -----------------------
      if ($validator->fails())
      {

          // get the error messages from the validator
          $messages = $validator->messages();

          return redirect()->back()->withErrors($validator)->withInput();
      }
      else
      {
        $files[] = Input::file('file');

        var_dump($files);
      }
};

我该怎么做?我想使用dropzone上传多个文件,但仅在提交表单时使用.在控制器中,我必须将每个文件保存在目录中,并将文件名保存在数据库中.

How can I do this? I want to use dropzone to upload multiple files but just when I submit the form. In controller I have to save each file in directory and file name in database.

谢谢

推荐答案

您也可以尝试以循环方式获取以Request为文件的文件:

You can try to get the files thought Request too in a loop:

控制器:

public function store(Request $request)
{
  $rules = array();

  // do the validation ----------------------------------
  // validate against the inputs from our form
  $validator = Validator::make(Input::all(), $rules);

  // check if the validator failed -----------------------
  if ($validator->fails())
  {
      // get the error messages from the validator
      $messages = $validator->messages();

      return redirect()->back()->withErrors($validator)->withInput();
  }
  else
  {
    foreach( $request->file('file') as $file ){        

            $filename = $file->store('file');
            #saves the file
            $array_images_names[] = $filename;
    }

    var_dump($files);
  }
};

JavaScript(允许接受多个文件)

JavaScript (allowing to accept multiple files)

    var post_url_images = $('#post_url_images').val(); 
    Dropzone.options.frm_drop_images = {
    paramName: "file", // The name that will be used to transfer the file
    maxFilesize: 1024,
    // The configuration we've talked about above
    url: post_url_images,
    autoProcessQueue: false,
    uploadMultiple: true,
    parallelUploads: 100,
    maxFiles: 100,

    // The setting up of the dropzone
    init: function() {
        var myDropzone = this;

        // First change the button to actually tell Dropzone to process the queue.
        this.element.querySelector("button[type=submit]").addEventListener("click", function(e) {
        // Make sure that the form isn't actually being sent.
        e.preventDefault();
        e.stopPropagation();
        myDropzone.processQueue();
        });

        // Listen to the sendingmultiple event. In this case, it's the sendingmultiple event instead
        // of the sending event because uploadMultiple is set to true.
        this.on("sendingmultiple", function() {
        // Gets triggered when the form is actually being sent.
        // Hide the success button or the complete form.
        });
        this.on("successmultiple", function(files, response) {
        // Gets triggered when the files have successfully been sent.
        // Redirect user or notify of success.
        });
        this.on("errormultiple", function(files, response) {
        // Gets triggered when there was an error sending the files.
        // Maybe show form again, and notify user of error
        });
    }

  };

尝试如下使用HTML表单:

Try to use your HTML form as below:

<div class="dropzone dropzone-previews" id="frm_drop_images" class="dropzone" method="post" action="{{ url('/admin/products/upload/image') }}"></div>
<!-- hiddent field to set where to post the images -->
<input type="hidden" name="post_url_images" id="post_url_images" value="{{ url('/create-intervention') }}" >
<div class="btn-new-bottom">
<a href="#new-intervention">Criar Intervenção (Não precisa usar este botão)</a>
</div>

这篇关于Laravel和Dropzone-如何在服务器端获取文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆