npm i --save nativescript-share-file-knotes
- 版本:1.0.11
- GitHub: https://github.com/braune-digital/nativescript-share-file
- NPM: https://npmjs.net.cn/package/nativescript-share-file-knotes
- 下载
- 昨日: 0
- 上周: 0
- 上个月: 0
Nativescript Share File
将/共享文件到其他应用。
Android Intent,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上的intent标题。
String
:(可选)默认:打开文件:
rect
在iPad上定位视图。在iPhone上它总是显示在底部。
Object
:(可选)默认:{x: 0, y: 0, width: 0, height: 0 }
。
options
显示iOS设备上的额外打开选项。
Boolean
:(可选)默认:false
。
animated
iOS设备的打开动画。
Boolean
:(可选)默认:false
。