npm i --save @knotes/nativescript-share-file
- 版本:2.0.1
- GitHub:
- NPM: https://npmjs.net.cn/package/%40knotes%2Fnativescript-share-file
- 下载
- 昨日: 0
- 上周: 0
- 上个月: 0
Nativescript Share File
将文件发送/共享到其他应用。
Android 意图,iOS InteractionController
.
安装
将插件安装到您的应用中。
npm install nativescript-share-file
用法
信息:共享的文件应在 documents
路径中。
import { ShareFile } from 'nativescript-share-file';
import * as fs from 'tns-core-modules/file-system';
export class TestClass{
shareFile;
fileName;
documents;
path;
file;
constructor() {
this.fileName = 'text.txt';
this.documents = fs.knownFolders.documents();
this.path = fs.path.join(this.documents.path, this.fileName);
this.file = fs.File.fromPath(this.path);
this.shareFile = new ShareFile();
this.shareFile.open( {
path: this.path,
intentTitle: 'Open text file with:', // optional Android
rect: { // optional iPad
x: 110,
y: 110,
width: 0,
height: 0
},
options: true, // optional iOS
animated: true // optional iOS
});
}
}
参数
path
共享文件的路径。
String
:必需
intentTitle
Android上的意图标题。
String
:(可选) 默认:打开文件:
。
rect
为iPad定位视图。在iPhone上它始终显示在底部。
Object
:(可选) 默认:{x: 0, y: 0, width: 0, height: 0 }
。
options
显示iOS设备的附加打开选项。
Boolean
:(可选) 默认:false
。
animated
为iOS设备打开动画。
Boolean
:(可选) 默认:false
。