How to change url dropzone? URL dynamically with ajax success

前端 未结 5 1542
青春惊慌失措
青春惊慌失措 2021-01-04 12:35

I read this: https://github.com/enyo/dropzone/wiki/Set-URL-dynamically but i dont got success... :( I have 1 form...

And i send the inputs with ajax.

The aj

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-04 12:56

    change this

    this.options.url = "class/upload_img.php?"+json.id;
    

    to this

    myDropzone.options.url = "class/upload_img.php?"+json.id;
    

    Does that work?

提交回复
热议问题