强调几点:
- 不能更改菜单”转发“名称
- 需要配置是否显示”转发“
- 需要配置转发动作是什么
是否显示转发的代码为
wx.showShareMenu({
withShareTicket: false, success: (res) => {
DLOG("showShareMenu created");
}, fail: (res) => {
DLOG("showShareMenu create fail");
}, complete: (res) => {
DLOG("showShareMenu create complete");
}
});
转发所实现的动作为, 记住需要把作用域带上,否则函数对应的是wx的作用域
let _this = this;
wx.onShareAppMessage(() => {
DLOG("shareNow with sys menu");
_this.shareNow.call(_this);
});
网友评论