当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ionic-native.SocialSharing类代码示例

本文整理汇总了TypeScript中ionic-native.SocialSharing的典型用法代码示例。如果您正苦于以下问题:TypeScript SocialSharing类的具体用法?TypeScript SocialSharing怎么用?TypeScript SocialSharing使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了SocialSharing类的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');
   });
 }
开发者ID:jbw91,项目名称:scripture-golf,代码行数:8,代码来源:home.ts

示例2: shareArticle

 shareArticle(article?: Article) {
   SocialSharing.share(
     this.config.social.message,
     this.config.social.subject,
     this.article.picture,
     'http://www.google.com'
   );
 }
开发者ID:Charl---,项目名称:ionic-wordpress-starter,代码行数:8,代码来源:article-share-button.ts

示例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');
		});
开发者ID:xuender,项目名称:family,代码行数:10,代码来源:tree-show.ts

示例4: 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
    });

  }
开发者ID:carminium,项目名称:newtechrev,代码行数:10,代码来源:post-details.ts

示例5: shareText

	shareText() {
		this.fab.close();
		SocialSharing.share(
			nodeToStr(this.selectNode),
			this.familyTree.title,
			null
		);
		this.backService.touch();
		this.backService.trackAction('node', 'shareText');
	}
开发者ID:xuender,项目名称:family,代码行数:10,代码来源:tree-show.ts

示例6: facebookShare

 facebookShare(socialMessage)
 {
   console.log("Compartiendo Facebook");
   SocialSharing.shareViaFacebook(socialMessage, null, null)
     .then(()=>{
       alert("Success");
     },
     ()=>{
        alert("failed")
     })
 }
开发者ID:SPL-201620,项目名称:SocialBike,代码行数:11,代码来源:socialshare.service.ts

示例7: 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');
	}
开发者ID:xuender,项目名称:family,代码行数:11,代码来源:tree-show.ts

示例8: tweeterShare

 tweeterShare(socialMessage){
   console.log("Compartiendo Tweeter");
   SocialSharing.shareViaTwitter(socialMessage, null, null)
     .then(()=>{
       alert("Success");
     },
     ()=>{
        alert("failed")
     })
   
 }
开发者ID:SPL-201620,项目名称:SocialBike,代码行数:11,代码来源:socialshare.service.ts

示例9: shareIt

 shareIt() {
   SocialSharing.share("我现在使用Growth,这是一款专注于Web开发者成长的应用,涵盖Web开发的流程及技术栈,Web开发的学习路线、成长衡量等各方面。快来下载吧!", "", "", "http://growth.ren/");
 }
开发者ID:TestSmirk,项目名称:growth2,代码行数:3,代码来源:index.ts


注:本文中的ionic-native.SocialSharing类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。