我正在使用 FormData 上传文件。我还想发送一组其他数据。
当我只发送图像时,它工作正常。当我将一些文本附加到表单数据时,它工作正常。当我尝试附加下面的“标签”数组时,其他一切正常,但没有发送数组。
FormData 和附加数组的任何已知问题?
实例化表单数据:
formdata = new FormData();
我创建的数组。Console.log 显示一切正常。
// Get the tags
tags = new Array();
$('.tag-form').each(function(i){
article = $(this).find('input[name="article"]').val();
gender = $(this).find('input[name="gender"]').val();
brand = $(this).find('input[name="brand"]').val();
this_tag = new Array();
this_tag.article = article;
this_tag.gender = gender;
this_tag.brand = brand;
tags.push(this_tag);
console.log('This is tags array: ');
console.log(tags);
});
formdata.append('tags', tags);
console.log('This is formdata: ');
console.log(formdata);
我如何发送它:
// Send to server
$.ajax({
url: "../../build/ajaxes/upload-photo.php",
type: "POST",
data: formdata,
processData: false,
contentType: false,
success: function (response) {
console.log(response);
$.fancybox.close();
}
});