安装了打包后的App后,在没有安装微博的情况下调用微博分享,会进入未授权分支,然后就没有下一步了。
if (shareItem.authenticated) {
self.shareMessage(shareItem);
} else {
console.log("---未授权---");
shareItem.authorize(function() {
self.shareMessage(shareItem);
}, function(e) {
app.waiting.close();
app.toast.init("认证授权失败");
});
}
我希望能提示个提出出来,好让我提示用户失败。。
1 个回复
CherryWxy
你好,问题解决了吗