Ionic 2:尝试访问FileTransfer插件,但它没有安装

问题描述 投票:0回答:2

我们正在开发一个使用Native File Transfer插件的应用程序。但由于一个奇怪的问题,我们无法为iOS创建测试飞行/发布版本。

问题:即使成功安装了“文件传输”插件,我们也会在运行应用程序时看到以下错误

ionic cordova run ios -lc

console.warn: Native: tried accessing the FileTransfer plugin but it's not installed.

当我们点击一​​个调用fileTransfer.download(..)方法的按钮时 - 应用程序停止执行而不会抛出任何错误。

我在以下位置创建了一个包含日志和代码的详细帖子:

https://github.com/ionic-team/ionic-native/issues/2110

任何帮助?

ios ionic2 cordova-plugins ionic-native
2个回答
2
投票

彻底的头脑风暴后,我找到了答案 -

我的问题是FileTransfer对象可以从platform ready函数内部访问,但不能在provider内部访问 - 这在iOS上也是如此[Android版本正常工作]

这是我做的:

因为我需要FileTransfer中的provider实例 - 我创建了一个变量 - 和一个更新程序方法 -

private fileTransfer: any;

public setFileTransferRef( param ){
   this.fileTransfer = param;
}

因为我可以访问FileTransfer内的platform.ready() - 我在那里实例化了FileTransferObject并更新了provider如下 -

initializeApp() {
    this.platform.ready().then(() => {
        console.log('fileTransfer: ');   
        console.log(JSON.stringify(this.fileTransfer));
        //
        let fileTransfer: FileTransferObject = this.fileTransfer.create();
        //
        this.mediaIOSProv.setFileTransferRef(fileTransfer);
        .....
        ....
  • 其中mediaIOSProv是负责下载zip的提供商。

我还在cordova.js之后将build/vendor.js纳入index.html - (我遇到了一些帖子,其中开发人员报告这样做解决了他们丢失的插件问题) - 虽然没有这样的官方文档。

<body>

  <!-- Ionic's root component and where the app will load -->
  <ion-app></ion-app>

  <!-- The polyfills js is generated during the build process -->
  <script src="build/polyfills.js"></script>

  <!-- The vendor js is generated during the build process
       It contains all of the dependencies in node_modules -->
  <script src="build/vendor.js"></script>

  <!-- cordova.js required for cordova apps -->
  <script src="cordova.js"></script>

  <!-- The main bundle js is generated during the build process -->
  <script src="build/main.js"></script>

</body>

由于应用程序在iOS上成功运行 - 我不敢改变cordova.js的位置

我认为是 -

1:最好创建一个Provider来存储在平台中实例化的每个Native插件的引用 - 并在需要时使用引用

2:可能有一些信息缺失,特别是关于iOS,关于Ionic-Native Wrapper

任何建议/讨论将受到高度赞赏。


0
投票

使用此:运行ionic cordova platform add [platform]然后ionic cordova build [platform]并在您的设备中运行。它对我有用!

© www.soinside.com 2019 - 2024. All rights reserved.