$("#gallery li.gallery-image-item:not(:first)").each(function() {
formData.append('gallery[]', {file: 'file', comment: 'comment', youTube: 'youtube'});
});
我正在使用 formData 和 XMLHttpRequest 将数据从 js 发送到 php。
问题是上述转储为字符串:
string(15) "[object Object]"
当我遍历它时:
foreach($input['gallery'] as $galleryImg) {
var_dump(($galleryImg));
}
我怎样才能以数组的形式访问它?我已经尝试过 json.stringify 和 json decode + json decode,在 php 方面是真的。
没运气。