- ios设备分享失败问题
uni开发实现微信小程序右上角 胶囊分享功能 ,//分享朋友圈 onShareTimeline(res) { this.initShare() return { title: '你的分享,可以帮助卡友解决一点点困难。', imageUrl: 'https://app.kachez.cn/upload/b30dba8c-5f1c-4627-8470-b989d75f54a9.jpg', query: 'from=shareTimeline', } }, // 分享到好友 onShareAppMessage(res) { this.initShare() return { title: '你的分享,可以帮助卡友解决一点点困难。', imageUrl: 'https://app.kachez.cn/upload/b30dba8c-5f1c-4627-8470-b989d75f54a9.jpg', path: '/pages/home/videohome', } }, 现在遇到的问题是,ios设备分享时好时坏,分享朋友圈和好友都有问题,[图片][图片]
07-24 - onShareTimeline分享功能安卓正常,ios端不显示问题?
onShareTimeline() { // 分享朋友圈,动态获取当前视频的信息 let item = this.list[this.current]; if (!item) return {}; // 防止空数据出错 console.log("分享视频标题:" + item.title); return { title: item.title, imageUrl: this.$http.imgPath(item.picurl), query: `index=${this.current}¤tPage=${this.currentPage}&classid=${this.class_id}` + `&address=${this.address}&type=${this.type}&keywords=${this.keywords}` + `&brand_id=${this.brand_id}&vehicle_id=${this.vehicle_id}&issearch=${this.issearch}&from=shareTimeline` }; }, uniApp 开发微信小程序分享朋友圈功能,ios 端小程序打开黑屏,安卓端正常
06-05 - App跳转小程序问题?
APP调起微信小程序提示has_no_permission 开放平台:AppID:wx74b42c2df5ae2b07 小程序的appid:wx3b4f7cf07cdef105 原始id gh_a813b00b61c3
2023-10-27