2015-02-06 46 views
4

我在類固醇應用程序中使用cordova-http插件。根據manual,我在類固醇添加插件在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> 

但我仍然得到了error說服力我注入Angular模型缺失。

  1. 我需要鏈接它的index.html知道手冊說 <js-module>滿足了這一工作。
  2. 做我需要安裝插件,像什麼在插件的github上 頁提到:

    科爾多瓦插件添加https://github.com/wymsee/cordova-HTTP.git

  3. 可以請你告訴我,我應該怎樣一步一步做,使其 工作?

回答

0

添加插件的方法很多。這裏有一個簡單的方法:

  1. 打開命令行
  2. 路徑/到/你/項目/插件
  3. 科爾多瓦插件添加https://github.com/wymsee/cordova-HTTP.git
  4. 加入 'cordovaHTTP' 實例注入插件:VAR應用= angular.module('myApp',['ngRoute','ngAnimate','cordovaHTTP']);
  5. 與關鍵字使用它cordovaHTTP

希望它能來幫你

相關問題