if (cc.sys.WECHAT_GAME == cc.sys.platform) { if (! this .shareBtn) { this .shareBtn = wx.createGameRecorderShareButton({ style: { left: 100, top: 100, height: 90 }, share: { query: '录制分享' , bgm: '' , timeRange: [[1000, 3000], [4000, 9000]], }, }); } console.log( '微信录制, 分享按钮 ' , this .shareBtn); this .shareBtn.show(); this .shareBtn.onTap( function (res) { console.log( '微信录制分享按钮回调: ' , res); }); } |
代码如上, 分享按钮点击无反应
已知问题,会在下一个版本(2.8.2)的基础库修复。 目前可以用以下办法解决该问题:
wx.createGameRecorderShareButton接口调用时加上share.button和share.title这两个参数
1