blueimp jQuery-File-Upload without ajax

前端 未结 2 1614
深忆病人
深忆病人 2021-02-05 22:32

I really love the client side processing of selecting a file and having a preview with the option to cancel or delete.

However i want to upload the page with a form and

2条回答
  •  爱一瞬间的悲伤
    2021-02-05 23:09

    Use config replaceFileInput = false;
    jQuery('#add_new_product_form').fileupload({
                // Uncomment the following to send cross-domain cookies:
                //xhrFields: {withCredentials: true},
                fileInput: jQuery('#upload-video'),
                replaceFileInput: false,
                ......
    })
    

    And controller you will get $_FILES to get video data.

提交回复
热议问题