wx.invoke("shareToExternalMoments", {
text: {
content: "来自侧边栏",
}
}, (res) => {
console.log(res)
if (res.err_msg == "shareToExternalMoments:ok") {
console.log("成功")
}
}
);
//报这样的错误
Exception: TypeError: 'caller' and 'arguments' are restricted function properties and cannot be accessed in this context. at Function.remoteFunction
你好,测试了下正常调用的,这样设置然后在手机端调用看下
wx.invoke("shareToExternalMoments", {
text: {
content:"测试", // 文本内容
},
},function(res) {
if (res.err_msg == "shareToExternalMoments:ok") {
}
}
);
//分享到 客户朋友圈
showTop() {
console.log(1)
wx.invoke("shareToExternalMoments", {
text: {
content: "测试", // 文本内容
},
}, function (res) {
if (res.err_msg == "shareToExternalMoments:ok") {
}
}
);
},
调用就直接报错,wx.invoke is not a function; [Component] Event Handler Error @ pages/hb/assistant/assistant#bound showTop
TypeError: wx.invoke is not a function
我也调不通,报这个错
{errMsg: "shareToExternalMoments:permission denied", err_msg: "shareToExternalMoments:permission denied"}
上边这四个东西都检查过了,没用。
"permission denied"的报错是因为同时传了图片和链接。
图片、链接和视频只能三选一。