Uploading multiple files with Sails.js 0.10 and Skipper using Dropzone.js

北战南征 提交于 2019-11-29 10:56:08

This should work, provided you loop through the param names asynchronously, e.g.:

async.map(paramNames, function(file, cb) {

    req.file(file).upload(function (err, files) {

        // save the file, and then:
        return cb(err, files);

    });

}, function doneUploading(err, files) {

       // If any errors occurred, show server error
       if (err) {return res.serverError(err);}
       // Otherwise list files that were uploaded
       return res.json(files);

});

I was able to test this successfully.

This seems to work okay for me:

    Dropzone.options.fotagDropzone = {
    init: function() {

    this.on("success", function(file, responseText) {
    // Handle the responseText here. For example, add the text to the preview element:
    console.log(responseText.files[0]);
    file.previewTemplate.appendChild(document.createTextNode(responseText.files[0].fd));
    });

    },
    paramName: "file", // The name that will be used to transfer the file
    maxFilesize: 10, // MB
    uploadMultiple: false,
    addRemoveLinks: true,
    parallelUploads: true,
    dictDefaultMessage: 'Drag files here <br />or<br /><button class="dzUploadBtn" type="button">click here to upload</button>',
    acceptedMimeTypes: '.jpg'
    };

Basically, it doesn't send the files all together, but you can still drop multiple files into the dropzone. The back end is your standard upload using skipper.

With Dropzone and Sails.js, you have to:

  • add the definination of the filename in dropzone configuration:

Dropzone.options.myDropzone = { paramName: "fileName" }

  • use this command to get back the uploaded file:

req.file('fileName').upload(function (err, uploadedFiles) {

});

uploadedFiles contains the file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!