# wx.chooseImage(Object object)
从基础库 2.21.0 开始,本接口停止维护,请使用 wx.chooseMedia 代替
以 Promise 风格 调用:支持
微信 Windows 版:支持
微信 Mac 版:支持
# 功能描述
从本地相册选择图片或使用相机拍照。
# 参数
# Object object
属性 | 类型 | 默认值 | 必填 | 说明 | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
count | number | 9 | 否 | 最多可以选择的图片张数 | |||||||
sizeType | Array.<string> | ['original', 'compressed'] | 否 | 所选的图片的尺寸 | |||||||
| |||||||||||
sourceType | Array.<string> | ['album', 'camera'] | 否 | 选择图片的来源 | |||||||
| |||||||||||
success | function | 否 | 接口调用成功的回调函数 | ||||||||
fail | function | 否 | 接口调用失败的回调函数 | ||||||||
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
# object.success 回调函数
# 参数
# Object res
属性 | 类型 | 说明 | 最低版本 | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
tempFilePaths | Array.<string> | 图片的本地临时文件路径列表 (本地路径) | ||||||||||||||
tempFiles | Array.<Object> | 图片的本地临时文件列表 | 1.2.0 | |||||||||||||
|
wx.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success (res) {
// tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
}
})