【uniappH5-分享】

mounted(){fetch('地址').then(function(res) {
					return res.json()
				})
				.then(function(res) {
					wx.config({
						debug: false,
						appId: res.appId,
						timestamp: res.timestamp,
						nonceStr: res.nonceStr,
						signature: res.signature,
						jsApiList: [
							// 所有要调用的 API 都要加到这个列表中
							'checkJsApi',
							'onMenuShareTimeline',
							'onMenuShareAppMessage'
						],
					});
					wx.ready(function() {
						// 在这里调用 API
						wx.onMenuShareTimeline({
							title: res.title, // 分享标题
							link: res.link, // 分享链接
							imgUrl: res.imgUrl, // 分享图标
							success: function() {
								// 用户确认分享后执行的回调函数朋友圈
								console.log("分享朋友圈成功")
							},
							cancel: function() {
								// 用户取消分享后执行的回调函数
								console.log("分享朋友圈失败")
							}
						});
			
						wx.onMenuShareAppMessage({
							title: res.title, // 分享标题
							desc: res.desc, // 分享描述
							link: res.link, // 分享链接
							imgUrl: res.imgUrl, // 分享图标
							success: function() {
								// 用户确认分享后执行的回调函数朋友
								console.log("分享朋友成功")
							},
							cancel: function() {
								// 用户取消分享后执行的回调函数
								console.log("分享朋友成功")
							}
						});
			
					});
				}).catch(function(err) {
			
				});
}

你可能感兴趣的:(uniapp,uni-app,小程序,前端)