如何添加cordova插件到类固醇应用程序

时间:2015-02-06 19:37:07

标签: angularjs cordova plugins steroids

我在Steroids应用中使用cordova-http插件。根据{{​​3}},我在iOS配置中添加了类固醇中的插件可以提供服务:

[
  {"source":"https://github.com/wymsee/cordova-HTTP.git"}
]

我也在config.xml中添加了它:

<js-module src="www/cordovaHTTP.js" name="cordova-HTTP">
  <clobbers target="cordova-HTTP" />
</js-module>

但我仍然得到了manual告诉我注射的Angular模型缺失。

  1. 我是否需要将其链接到index.html,知道手册说 <js-module>完成了这项工作。
  2. 我是否需要像插件github中提到的那样安装插件 页:

    cordova插件添加error

  3. 请您告诉我应该一步一步地做些什么 工作

1 个答案:

答案 0 :(得分:0)

添加插件的方法有很多种。有一个简单的方法:

  1. 打开命令行
  2. 路径/到/你/项目/插件
  3. cordova插件添加https://github.com/wymsee/cordova-HTTP.git
  4. 添加'cordovaHTTP'注入插件 示例:var app = angular.module('myApp',['ngRoute','ngAnimate','cordovaHTTP']);
  5. 使用关键字cordovaHTTP
  6. 希望它能帮到你