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