两个回调都有监听,如果只赠送不告知,那只会调用[A],如果赠送成功后告知好友,会先调[A] 再调[B]和[A] 【A】 wx.onInteractiveStorageModified((res)=>{ this.log.logInfo(this.tag, '修改了关系互动数据结果:',res); if (cb) { cb(res); } }); 【B】 wx.onShareMessageToFriend((res) => { console.log('[主域]wx.shareMessageToFriend result:'); console.log(res); let bShareResult = res.success || false; if (bShareResult){ // 分享成功 if (success) { success(); } }else{ if (fail) { fail(); } } });
modifyFriendInteractiveStorage赠送后点“告诉他”会在重复一遍modifyFriendInteractiveStorage赠送后如果点“告诉他”会在重复一遍modifyFriendInteractiveStorage的流程,请问一下这种情况怎么解决?
2020-01-14