uni.share({
provider: 'qq',
type: '1', // 1: 为纯文字分享
title: this.courseName,
// href: 'url', // type为0时才必填
summary: this.shareContent,
success: () => {
uni.showToast({
title: '分享成功',
icon: 'none',
});
},
fail: (e) => {
uni.showToast({
title: '分享失败~',
icon: 'none',
});
},
});
- 发布:2021-06-04 09:50
- 更新:2021-06-04 12:08
- 阅读:601
产品分类: uniapp/App
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 11.4
HBuilderX类型: 正式
HBuilderX版本号: 3.1.13
手机系统: Android
手机系统版本号: Android 11
手机厂商: OPPO
手机机型: OPPO Reno Ace
页面类型: vue
打包方式: 云端
项目创建方式: HBuilderX
示例代码:
操作步骤:
代码示例
代码示例
预期结果:
纯文字分享正常
纯文字分享正常
实际结果:
{
"errMsg": "share:fail 非纯图片分享必须传递链接地址!,http://ask.dcloud.net.cn/article/282",
"errCode": -1,
"code": -1
}
{
"errMsg": "share:fail 非纯图片分享必须传递链接地址!,http://ask.dcloud.net.cn/article/282",
"errCode": -1,
"code": -1
}
bug描述:
Android端 QQ分享无法分享纯文字内容,iOS端功能正常!
uni.share({
provider: 'qq',
type: '1', // 1: 为纯文字分享
title: '分享标题',
// href: 'url', // type为0时才必填
summary: '分享内容文本',
success: () => {
uni.showToast({
title: '分享成功',
icon: 'none',
});
},
fail: (e) => {
uni.showToast({
title: '分享失败~',
icon: 'none',
});
},
});
// 纯文字分享报错必填href
{
"errMsg": "share:fail 非纯图片分享必须传递链接地址!,http://ask.dcloud.net.cn/article/282",
"errCode": -1,
"code": -1
}