更新记录
0.0.3(2024-07-26)
下载此版本
0.0.1(2024-07-19)
下载此版本
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 4.15,Android:支持,iOS:不确定,HarmonyNext:不确定 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
lime-share
- lime-share 调用系统分享组件发送分享消息,可分享文本、图片、视频、文件,兼容uniappX(安卓,ios)
安装
插件市场导入即可
使用
import {shareWithSystem, ShareOption} from '@/uni_modules/lime-share'
// 分享文本
shareWithSystem({
type: 'text',
title: '分享到',
summary: '这是一条重要又很不一般的文本'
} as ShareOption)
// 分享图片
uni.chooseImage({
count: 1,
success(res) {
shareWithSystem({
type: 'image',
title: '分享到',
path: res.tempFilePaths[0]
} as ShareOption)
}
})
// 分享视频
uni.chooseVideo({
success(res) {
shareWithSystem({
type: 'video',
title: '分享到',
path: res.tempFilePath
} as ShareOption)
}
})
// 分享文件 用到了 lime-choose-file 文件选择 https://ext.dcloud.net.cn/plugin?id=17636
chooseFile({
success(res){
shareWithSystem({
type: 'file',
title: '分享到',
path: res.tempFiles[0].path
} as ShareOption)
}
} as ChooseFileOption)
打赏
如果你觉得本插件,解决了你的问题,赠人玫瑰,手留余香。