更新记录
0.0.4(2025-01-26)
0.0.3(2024-07-26)
0.0.1(2024-07-19)
查看更多
平台兼容性
uni-app
Vue2 |
Vue3 |
Chrome |
Safari |
app-vue |
app-nvue |
Android |
iOS |
鸿蒙 |
√ |
√ |
- |
- |
- |
- |
4.4 |
- |
- |
微信小程序 |
支付宝小程序 |
抖音小程序 |
百度小程序 |
快手小程序 |
京东小程序 |
鸿蒙元服务 |
QQ小程序 |
飞书小程序 |
快应用-华为 |
快应用-联盟 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
uni-app x
Chrome |
Safari |
Android |
iOS |
鸿蒙 |
微信小程序 |
- |
- |
5.0 |
- |
- |
- |
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)
打赏
如果你觉得本插件,解决了你的问题,赠人玫瑰,手留余香。
