本文整理匯總了TypeScript中ionic-native.SocialSharing.share方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript SocialSharing.share方法的具體用法?TypeScript SocialSharing.share怎麽用?TypeScript SocialSharing.share使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ionic-native.SocialSharing
的用法示例。
在下文中一共展示了SocialSharing.share方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: share
share() {
let message = 'I love playing Scripture Golf! You should download it too! #ScriptureGolf';
SocialSharing.share(message, 'Scripture Golf', SG_IMAGE_URL, 'https://www.facebook.com/ldsscripturegolf/').then(() => {
console.log('Shared');
}).catch(() => {
this.toastService.showToast('Cannot share at this time');
});
}
示例2: shareArticle
shareArticle(article?: Article) {
SocialSharing.share(
this.config.social.message,
this.config.social.subject,
this.article.picture,
'http://www.google.com'
);
}
示例3:
.then((data) => {
SocialSharing.share(
'老豆家譜',
'老豆家譜',
data,
'http://a.app.qq.com/o/simple.jsp?pkgname=cn.oldbean.tree',
);
this.backService.touch();
this.backService.trackAction('node', 'shareQr');
});
示例4: shareText
shareText() {
this.fab.close();
SocialSharing.share(
nodeToStr(this.selectNode),
this.familyTree.title,
null
);
this.backService.touch();
this.backService.trackAction('node', 'shareText');
}
示例5: share
share() {
console.log( this.selectedItem.title.rendered, this.selectedItem.link );
SocialSharing.share( this.selectedItem.title.rendered, null, null, this.selectedItem.link ).then(() => {
// Sharing via email is possible
}).catch(() => {
// Sharing via email is not possible
});
}
示例6: shareLink
shareLink() {
this.fab.close();
SocialSharing.share(
'老豆家譜',
this.familyTree.title,
null,
'http://a.app.qq.com/o/simple.jsp?pkgname=cn.oldbean.tree',
);
this.backService.touch();
this.backService.trackAction('node', 'shareLink');
}
示例7: shareIt
shareIt() {
SocialSharing.share("我現在使用Growth,這是一款專注於Web開發者成長的應用,涵蓋Web開發的流程及技術棧,Web開發的學習路線、成長衡量等各方麵。快來下載吧!", "", "", "http://growth.ren/");
}
示例8: share
private share(url: string) {
SocialSharing.share('Looking for a job?', null, null, url);
}
示例9: share
share(post) {
SocialSharing.share(null, post.title.rendered, null, post.link)
}