Ich lese diese: https://github.com/enyo/dropzone/wiki/Set-URL-dynamically aber i dont Erfolg habe ... :( I have 1 Form ...Wie ändere ich die URL-Dropzone? URL dynamisch mit AJAX Erfolg
Und ich sende die Eingänge mit Ajax
Die Ajax kehrt das. neue ID des Benutzers. in diesem Moment möchte ich für de url Dropzone ändern Pfad-ID des neuen Benutzers einzustellen.
$.ajax({
type: "POST",
url: "class/inserir.php?funcao=teste",
data: formdata,
dataType: "json",
success: function(json){
if(json.sucesso=="sim"){
alert("Wait! Sending Pictures.");
this.options.url = "class/upload_img.php?"+json.id;
myDropzone.processQueue();
}else{
location.href="home.php?ir=cad_animal&cad=nao&erro="+json.erro;
}
}
});
var myDropzone = new Dropzone("#imagens", {
url: "class/upload_imgteste.php",
paramName: "file", // The name that will be used to transfer the file
maxFilesize: 1, // MB
addRemoveLinks : true,
dictResponseError: "Não foi possível enviar o arquivo!",
autoProcessQueue: false,
thumbnailWidth: 138,
thumbnailHeight: 120,
});
sorry für mein schlechtes Englisch!
Vielen Dank für alle.