更新记录
1.0.0(2025-01-01)
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.6.8,Android:5.0,iOS:不支持,HarmonyNext:不支持 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
鸿蒙元服务 |
× |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
概述
温馨提示 如何调用插件
import {
chooseFile
} from "@/uni_modules/yuange-fileChoose"
选择文件
// true 支持多选 false 单选
chooseFile(true,{
success(res) {
console.log(JSON.stringify(res));
},
fail(res) {
console.log(JSON.stringify(res));
}
});
回调结果数据格式
{
"filePath": "/storage/emulated/0/Android/data/uni.UNI46583B4/cache/Screenshot_20240908_150554.jpg",
"fileSize": "104803",
"fileType": "jpg",
"fileName": "Screenshot_20240908_150554.jpg",
"code": 200,
"msg": "操作成功"
}
{
"data": [
{
"fileType": "jpg",
"filePath": "/storage/emulated/0/Android/data/uni.UNI46583B4/cache/Screenshot_20240908_150554.jpg",
"fileSize": "104803",
"fileName": "Screenshot_20240908_150554.jpg"
},
{
"fileType": "jpg",
"filePath": "/storage/emulated/0/Android/data/uni.UNI46583B4/cache/Screenshot_20240908_150551.jpg",
"fileSize": "104803",
"fileName": "Screenshot_20240908_150551.jpg"
},
{
"fileType": "jpg",
"filePath": "/storage/emulated/0/Android/data/uni.UNI46583B4/cache/Screenshot_20240908_150550.jpg",
"fileSize": "104803",
"fileName": "Screenshot_20240908_150550.jpg"
}
],
"code": 200,
"msg": "操作成功"
}
{
"code":500,
"msg":"操作失败"
}