wx.config({ debug: false, appId: 'wx7224c4be3e5ee092', timestamp: '1743716460', nonceStr: 'f0EJdGVj4U5V29Dh', signature: '3b294a2d2a086f92091f6c1e5723dc57d3b6a919', jsApiList: [ // 所有要调用的 API 都要加到这个列表中 'checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage', 'onMenuShareQQ', 'onMenuShareWeibo', 'hideMenuItems', 'showMenuItems', 'hideAllNonBaseMenuItem', 'showAllNonBaseMenuItem', 'translateVoice', 'startRecord', 'stopRecord', 'onRecordEnd', 'playVoice', 'pauseVoice', 'stopVoice', 'uploadVoice', 'downloadVoice', 'chooseImage', 'previewImage', 'uploadImage', 'downloadImage', 'getNetworkType', 'openLocation', 'getLocation', 'hideOptionMenu', 'showOptionMenu', 'closeWindow', 'scanQRCode', 'chooseWXPay', 'openProductSpecificView', 'addCard', 'chooseCard', 'openCard' ] }); wx.ready(function() { // 在这里调用 API wx.onMenuShareTimeline({ title: window.shareData.tTitle, //desc: window.shareData.tContent, link: window.shareData.timeLineLink, imgUrl: window.shareData.imgUrl, success: function() { // 用户确认分享后执行的回调函数 //alert(window.shareData.tTitle) }, cancel: function() { // 用户取消分享后执行的回调函数 } }); wx.onMenuShareAppMessage({ title: window.shareData.tTitle, desc: window.shareData.tContent, link: window.shareData.timeLineLink, imgUrl: window.shareData.imgUrl, type: '', // 分享类型,music、video或link,不填默认为link dataUrl: '', // 如果type是music或video,则要提供数据链接,默认为空 success: function() { // 用户确认分享后执行的回调函数 //alert(window.shareData.tTitle) }, cancel: function() { // 用户取消分享后执行的回调函数 } }); wx.onMenuShareQQ({ title: window.shareData.tTitle, desc: window.shareData.tContent, link: window.shareData.timeLineLink, imgUrl: window.shareData.imgUrl, success: function() { // 用户确认分享后执行的回调函数 }, cancel: function() { // 用户取消分享后执行的回调函数 } }); wx.onMenuShareQZone({ title: window.shareData.tTitle, desc: window.shareData.tContent, link: window.shareData.timeLineLink, imgUrl: window.shareData.imgUrl, success: function() { // 用户确认分享后执行的回调函数 }, cancel: function() { // 用户取消分享后执行的回调函数 } }); }); wx.error(function(res){ //config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。 alert(JSON.stringify(res)); });