我在 Ionic2 应用程序中使用 SocialSharing-PhoneGap-Plugin - 但我需要确认是否共享了某些内容。有没有办法做到这一点?操作系统(iOS 或 Android)是否就用户是否在操作表上点击 OK/Cancel 提供某种类型的确认信号?
我是一个新手程序员,所以我很感激一些代码示例。提前致谢。
这是我当前的代码:
otherShare(){
this.sharingVar.share("General Message Body Goes Here","Hello
World","assets/images/image.jpg","http://example.com")
.then(()=>{
alert("Success");
},
()=>{
alert("failed");
})
};