我有一个在dropzone中上传图片的表单,当它上传时,它会将图片的名称记录到mysql数据库中,并为它们分配产品的id。我用json数组返回该id,但我不知道在哪里可以检索它以重定向到另一个页面
'
$data = array(
'id_producto' => $id_producto,
);
//returns data as JSON format
echo json_encode($data);
Here I try to retrieve the json variable
this.on("success", function(file, serverFileName) {
var sfn = serverFileName
});
this.on("success", function (file, data) {
$('#id_producto').val(data.id_producto);
var id_producto = $('#id_producto').val()
window.location="restable.php?id_producto=id_producto
});
'
1条答案
按热度按时间qvsjd97n1#
您必须以这种方式使用dropzone: