How to access fineuploader parameters onComplete function?

前端 未结 1 520
借酒劲吻你
借酒劲吻你 2021-01-15 17:46
   manualuploader.fineUploader(\'setParams\', {
        foo: bar
      });

  var manualuploader = $(\'#manual-fine-uploader\').fineUploader({
    .
    .
    .

  }         


        
相关标签:
1条回答
  • 2021-01-15 18:24

    The responseJSON parameter will include any and all keys and values returned in your server's response to the upload request. The setParams function is used to send parameters in the upload request to your server. If, for some reason, you want to make these same values available to your complete callback, simply include them in your server's response.

    0 讨论(0)
提交回复
热议问题