设置了count值,为2,但是还是可以选择9张
const a = 9;
const b = 1;
const conut = a - b; // count值是个变量,根据业务场景来定
wx.chooseImage({
count, // 默认9
sizeType: ['original','compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function(res) {
}
})
wx.chooseImage({ count, // 默认9 改为 wx.chooseImage({ count:conut, // 默认9count:conut
count 和 conut??? 你工具不会报错undefined吗?给你写了个代码片段,真机测试下。我测是正常的
https://developers.weixin.qq.com/s/7dN8IDmE7SfS