8***@qq.com
8***@qq.com
  • 发布:2023-05-04 17:07
  • 更新:2023-09-27 11:31
  • 阅读:398

uni.share scene设置为WXSceneTimeline 实际操作时弹出分享到聊天界面

分类:uni小程序sdk
按钮  
<button  @tap='shareTimeline' open-type="share">  
                    <text class='iconfont icon-pengyouquan' style='font-size: 44upx;'></text>  
                </button>  
js  
shareTimeline() {  
                uni.share({  
                    provider: "weixin",  
                    scene: "WXSceneTimeline",  
                    type: 2,  
                    imageUrl: this.imagepath,  
                    success: function(res) {  
                        console.log("success:" + JSON.stringify(res));  
                    },  
                    fail: function(err) {  
                        console.log("fail:" + JSON.stringify(err));  
                    }  
                });  
            }
2023-05-04 17:07 负责人:无 分享
已邀请:
wwwzzz

wwwzzz

仅支持分享微信小程序到微信聊天界面,想进入朋友圈需改为分享图片方式,在图片中包含小程序码。一般通过canvas绘制图片,插件市场有很多生成图片的插件。

要回复问题请先登录注册