npm i --save nativescript-social-share
- 版本:1.6.0
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-social-share
- 下载
- 昨日:39
- 上周:169
- 上个月:386
NativeScript 社交分享插件
一个用于在 Android 和 iOS 上使用原生社交分享小部件的 NativeScript 插件。目前该模块支持图片和文本分享。
安装
从您的项目根目录运行以下命令
$ tns plugin add nativescript-social-share
此命令将自动安装必要的文件,并将 nativescript-social-share 作为依赖项存储在您的项目 package.json
文件中。
用法
要使用社交分享模块,您必须首先使用 require()
引入它。在引入模块后,您可以访问其 API。
// ------------ JavaScript ------------------
var SocialShare = require("nativescript-social-share");
// ------------- TypeScript ------------------
import * as SocialShare from "nativescript-social-share";
API
shareImage(ImageSource image, [可选] String subject)
shareImage()
方法期望一个 ImageSource
对象。下面的代码从应用程序加载图片并调用带有它的分享小部件
// ------------ JavaScript ------------------
var SocialShare = require("nativescript-social-share");
var imageSourceModule = require("image-source");
var image = imageSourceModule.fromFile("~/path/to/myImage.jpg");
SocialShare.shareImage(image);
// ------------- TypeScript ------------------
import * as SocialShare from "nativescript-social-share";
import { ImageSource } from "image-source";
let image = ImageSource.fromFile("~/path/to/myImage.jpg");
SocialShare.shareImage(image);
您可以提供第二个参数来配置 Android 上的主题
SocialShare.shareImage(image, "How would you like to share this image?");
shareText(String text, [可选] String subject)
shareText()
方法期望一个简单的字符串
SocialShare.shareText("I love NativeScript!");
与 shareImage()
类似,您可以传递第二个参数到 shareText()
来配置 Android 上的主题
SocialShare.shareText("I love NativeScript!", "How would you like to share this text?");
shareUrl(String url, String text, [可选] String subject)
shareUrl()
方法期望一个 URL 和一个字符串
SocialShare.shareUrl("https://www.nativescript.org/", "Home of NativeScript");
您可以传递第二个参数到 shareUrl()
来配置 Android 上的主题
SocialShare.shareUrl("https://www.nativescript.org/", "Home of NativeScript", "How would you like to share this url?");
教程
寻找一些额外帮助以在您的移动应用程序中实现社交分享?请查看以下资源