收藏
回答

安卓机器打开系统相册默认不是打开全部照片 而是选择了某一部分存储的照片

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.chooseImage 客户端 7.0.3 2.6.1

- 当前 Bug 的表现(可附上截图)

安卓机器打开系统相册默认不是打开全部照片  而是选择了某一部分存储的照片


- 预期表现

安卓机器打开系统相册默认打开全部照片

- 复现路径

点击分享

- 提供一个最简复现 Demo

onAddButtonTap: function () {

var _this = this;

wx.chooseImage({

count: _this.data.photoMaxCnt - _this.data.photoItems.length,

sizeType: ['compressed'],

sourceType: ['album', 'camera'],

success: function (res) {

console.log(res);

var currentItem = _this.data.photoItems

console.log(currentItem);

currentItem = currentItem.concat(res.tempFilePaths);

if (currentItem.length > _this.data.photoMaxCnt) {

currentItem.length = _this.data.photoMaxCnt;

$.showToastWarning({

title: '最多添加' + String(_this.data.photoMaxCnt) + '张图片',

})

}

_this.setData({

isChangeNotice_img: 1,

photoItems: currentItem,

showAddButton: currentItem.length < _this.data.photoMaxCnt,

})

console.log(currentItem);

},

})

},


回答关注问题邀请回答
收藏
登录 后发表内容