ek.chooseImage
支持 Promise
从本地相册选择图片或使用相机拍照。
参数
参数 | 类型 | 默认值 | 必填 | 说明 | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
count | number | 9 | 否 | 最多可以选择的图片张数 | |||||||
sizeType | string[] | ['original', 'compressed'] | 否 | 所选的图片的尺寸 | |||||||
| |||||||||||
sourceType | string[] | ['album', 'camera'] | 否 | 选择图片的来源 | |||||||
| |||||||||||
success | function | 否 | 接口调用成功的回调函数 | ||||||||
fail | function | 否 | 接口调用失败的回调函数 | ||||||||
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
返回
属性 | 类型 | 说明 |
---|---|---|
tempFilePaths | string[] | 图片的本地临时文件路径列表 (本地路径) |
tempFiles | TempFile[] | 图片的本地临时文件列表 |
TempFile
属性 | 类型 | 说明 |
---|---|---|
path | string | 本地临时文件路径 (本地路径) |
size | number | 本地临时文件大小,单位 B |
Example
ts
const res = await ek.chooseImage({
count: 2
})
console.log(res.tempFilePaths)