npm i --save nativescript-share-file-enduco
- 版本: 1.0.9
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-share-file-enduco
- 下载量
- 昨日: 0
- 上周: 0
- 上个月: 0
Nativescript Share File
向其他应用发送/共享文件。
Android 意图, IOS 交互控制器
.
安装
在您的应用中安装此插件。
npm install nativescript-akylas-share-file
用法
信息:共享的文件应位于documents
路径。
import { ShareFile } from 'nativescript-akylas-share-file';
import * as fs from '@nativescript/core/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
。