作者 王晓刚
1 个管道 的构建 通过 耗费 1 秒

商户申请

... ... @@ -145,13 +145,13 @@
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
var html1 = '';
var html = '';
$(res.localIds).each(function (key, localId) {
html1 += uploadImages(localId,1);
console.log(html1);
console.log(uploadImages(localId,1));
// console.log(html);
});
console.log(html1);
$('#dom1').prepend(html1);
console.log(html);
$('#dom1').prepend(html);
}
});
});
... ...