无法安装Ionic-Native File插件

时间:2017-09-21 05:46:03

标签: android cordova ionic-framework ionic3 ionic-native

我有一个Ionic 3项目,我正在尝试使用以下命令添加Ionic Native File插件:

ionic cordova plugin add cordova-plugin-file

但是,我收到以下错误:

L:\MyTrials\test\ionic\locations-app>ionic cordova plugin add cordova-plugin-file
> cordova plugin add cordova-plugin-file --save
x Running command - failed!
[ERROR] An error occurred while running cordova plugin add cordova-plugin-file

    --save (exit code 1):

    Error: Failed to fetch plugin file:node_modules\cordova-plugin-file via
    registry.
    Probably this is either a connection problem, or plugin spec is
    incorrect.
    Check your connection and plugin name/version/URL.
    Error: cmd: Command failed with exit code 1 Error output:
    npm ERR! code ENOLOCAL
    npm ERR! Could not install from "node_modules\cordova-plugin-file" as it
    does not contain a package.json file.

    npm ERR! A complete log of this run can be found in:
    npm ERR!
    C:\Users\xxx\AppData\Roaming\npm-cache\_logs\2017-09-21T05_16_31_940Z-debug.log

我已经尝试过其他命令,例如:

cordova plugin add cordova-plugin-file

cordova plugin add cordova-plugin-file --nofetch

但我基本上得到了同样的错误。

我的网络连接很好,我以管理员身份运行这些命令。

似乎只有File插件可能存在这些问题。我可以毫无问题地安装Ionic Native Datepicker插件。

感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

从问题的评论中可以看出,在@amin arghavani的帮助下,做到以下几点解决了这个问题:

  1. 如果插件已安装,请将其删除:ionic cordova plugin rm cordova-plugin-file 在我的情况下,这个插件从未安装过,所以我收到了与错误相同的消息。

  2. 检查项目的node_modules文件夹下是否存在该插件的文件夹。 在我的情况下,我实际上找到了一个以我已删除的插件(cordova-plugin-file)命名的快捷链接。

  3. 检查插件是否包含在项目package.json中作为依赖项或开发人员依赖项。 就我而言,我在cordova-plugin-file中找到了package.json对依赖项(我删除并保存)的引用。

  4. 从命令行再次添加cordova组件,这对我有用。