小程序
小游戏
企业微信
微信支付
扫描小程序码分享
代码:
wx.chooseImage({
count: 4, // 默认9
sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function(res) {
}
})
无论count设成什么值都只能一次选择一张图片,选第二张的时候提示最多只能添加一张,所以只能一张一张的上传
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
如果是count的限制,是选了一张后,其他的都变灰不能选,不会让你选第二张后出提示
自己检查一下代码里是不是其他地方做了限制
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
$(document).on("click", ".uploadpic", function () {
var self = this;
var latitude = 0;
var longitude = 0;
var serverIds = [];
var after = function (addr) {
var i = 0, length = localIds.length;
var upload = function () {
wx.uploadImage({
localId: localIds[i],
success: function (res) {
i++;
serverIds.push(res.serverId);
if (i < length) {
upload();
} else {
ajax({
key: "uploadpic", data: { ids: serverIds.join(), uniqueid: $(self).attr("uniqueid"), latitude: latitude, longitude: longitude, address: addr }, after: function (d) {
if (!transfer(d)) {
$(self).parent().empty().append(d);
}
}
})
}
},
fail: function (res) {
alert(JSON.stringify(res));
}
});
}
upload();
}
//baidumap.getaddressbycoods({ lat: 31.273697, lng: 121.397142, after: after });
wx.chooseImage({
count: 2, // 默认9
sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有
// sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
localIds = res.localIds;
wx.getLocation({
type: 'gcj02',
success: function (res) {
latitude = res.latitude;
longitude = res.longitude;
baidumap.getaddressbycoods({ lat: latitude, lng: longitude, after: after });
},
cancel: function (res) {
alert('Reject location sharing');
}
});
}
});
return false;
});
如果是count的限制,是选了一张后,其他的都变灰不能选,不会让你选第二张后出提示
自己检查一下代码里是不是其他地方做了限制
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人