2013-02-11 4 views
0

Я использую valum file uploader. Код JS для инициализации плагина является:Valums file uploder plugin показывает, что сообщение о сбое сбрасывается каждый раз

function Initializer() { 
    var uploader = new qq.FileUploader({ 
     element: document.getElementById('file-uploader'), 
     action: '/_Image/Upload', 
     params: {}, 
     allowedExtensions: ['jpg', 'jpeg', 'png', 'gif'], 
     debug: true, 
     onSubmit: function (id, fileName) { }, 
     onProgress: function (id, fileName, loaded, total) { }, 
     onComplete: function (id, fileName, responseJSON) { }, 
     onCancel: function (id, fileName) { }, 
     onError: function (id, fileName, xhr) { }, 

     messages: { 
      typeError: "{file} has invalid extension. Only {extensions} are allowed.", 
      sizeError: "{file} is too large, maximum file size is {sizeLimit}.", 
      minSizeError: "{file} is too small, minimum file size is {minSizeLimit}.", 
      emptyError: "{file} is empty, please select files again without it.", 
      allowedExtensionsError : "{file} is not allowed.", 
      onLeave: "The files are being uploaded, if you leave now the upload will be cancelled." 
     }, 
     showMessage: function (message) { 
      alert(message); 
     } 
    }); 
} 

Файл успешно uploded на сервере, но плагин показывающий file uplode fail сообщение каждый раз. Может кто-нибудь, пожалуйста, скажите мне, в чем проблема?

ответ

1

Вы, скорее всего, не возвращаете действительный JSON в качестве ответа своего сервера. В readme четко указано, во многих местах, что это требуется. Пожалуйста, взгляните на readme.