filepicker.io拖放图像超过2兆

时间:2014-07-31 22:25:09

标签: filepicker.io

每当我使用filepicker.io时,使用拖放方法对超过2 meg的图像都会出现以下错误。

未捕获的ReferenceError:未定义DIALOG_URL

html如下。

<div class='draganddropimage uploadhelp' id="exampleDropPane">
</div>

和javascript是

filepicker.setKey('xxxxx');
var options = {
    "multiple": true
   };
filepicker.makeDropPane($('#exampleDropPane')[0],
{
  multiple: true,
           mimetypes: 'image/*',
           maxsize:"10485760", 

        dragEnter: function() {
              //    $("#pb").addClass('show');

            $("#exampleDropPane").html("Drop to upload");
        },
        dragLeave: function() {
            //      $("#pb").addClass('show');

            $("#exampleDropPane").html("Drop files here");
        },
        progress: function(percentage) {

            $("#exampleDropPane").text("Uploading ("+percentage+"%)");
            // alert(percentage);
       //   $("#pb").css('width', (percentage)+'%');

        },
        dragError: function(data)
        {
            //alert(data);
            console.log('grrr errro');
        },
        done: function(data) {

            //console.log("fn:"+data[0].data.filename);
            //$("#pb").css('width', (0)+'%');
            //fileUploaded(data);
            imageupload(data);
    },
    error:function(type, message) {
        console.log(message);
                    $("#exampleDropPane").html("Sorry Images and PDF files only");

    }
});

任何帮助都将是最有帮助的

由于

克里斯

0 个答案:

没有答案