如何在现有的Ionic / Cordova项目中安装额外的Cordova插件?我需要Cordova相机插件。如果我尝试:
cordova plugin add https://github.com/apache/cordova-plugin-camera.git
我收到错误:
Error: Command failed: fatal: could not create work tree dir .... No such file or directory.
答案 0 :(得分:3)
你做的是正确的事,但最后你有camera.git。 那就是问题所在。 这是正确的做法!它对我有用。
$ cordova plugin add org.apache.cordova.camera
答案 1 :(得分:0)
通过点击这些命令行,在离子中安装cordova插件的最佳方法是:
$ionic cordova plugin add cordova-plugin-camera
$npm install --save @ionic-native/camera
在模块应用here
中添加插件 上的说明操作 祝你好运:)