用于ios的PhoneGap插件返回FAILED pluginJSON

时间:2013-08-05 13:31:08

标签: ios plugins cordova

我正在开发适用于iOS应用的Phonegap / Cordova(版本2.9.0)自定义插件。我的步骤如下:

  1. 我创建了一个HelloPlugin.js文件并将其复制到www / js /文件夹下,其代码为:

    var HelloPlugin =
    {
      callNativeFunction: function (success, fail, resultType)
      {
        alert('a');
        return Cordova.exec( success, fail, "HelloPlugin", "nativeFunction", ['1']);
      }
    }; 
    
  2. 我在plugins文件夹下创建了HelloPlugin.h和HelloPlugin.m文件,代码:

    // .h
    #import <Cordova/CDVPlugin.h>
    
    @interface HelloPlugin : CDVPlugin
    
    - (void)nativeFunction:(CDVInvokedUrlCommand*)command;
    
    @end
    
    // .m
    
    #import "HelloPlugin.h"
    
    @implementation HelloPlugin
    
    - (void)nativeFunction:(CDVInvokedUrlCommand*)command
    {
      NSLog(@"Hello, this is a native function called from PhoneGap/Cordova!");
    }
    
    @end
    
  3. 我在config.xml文件中添加了以下代码:

    <feature name="HelloPlugin">
      <param name="ios-package" value="CDVPlugin"/>
    </feature>
    
  4. 最后我按照以下方式修改了index.html:

    1. 添加了脚本引用。 ()
    2. JS代码补充:

        function callNativePlugin(returnSuccess) 
        {
           HelloPlugin.callNativeFunction( nativePluginResultHandler, nativePluginErrorHandler, returnSuccess );
        }
      
        function nativePluginResultHandler (result) {
              alert("SUCCESS: \r\n"+result );
        }
      
        function nativePluginErrorHandler (error) {
              alert("ERROR: \r\n"+error );
        } 
      
    3. 添加了两个按钮并调用了函数:

      “callNativePlugin( '成功');” “callNativePlugin( '错误');”

  5. 我希望这是激活插件所需要做的唯一事情。

    问题:在运行应用程序时,我在控制台上收到了FAILED pluginJSON错误。

    输出:

    - [CDVCommandQueue executePending] [第116行] FAILED pluginJSON = [   “HelloPlugin2650437”   “与HelloPlugin”   “nativeFunction”   [     “1”,     “1”,     “1”   ] ]

    我做错了什么,请告诉我。我真的很感激你的努力。请帮帮我。

2 个答案:

答案 0 :(得分:7)

跳出来的第一件事是你的插件包名称。它应该是您的iOS类名称,即“HelloPlugin”。

  <param name="ios-package" value="HelloPlugin"/>

引用插件的新方法的目的之一是允许插件名称的灵活性和向后兼容性,尤其是在Android上。例如:

<feature name="HelloPlugin">
  <param name="ios-package" value="HelloCDVPlugin"/>
  <param name="android-package" value="com.phonegap.plugins.HelloCDVPlugin"/>
</feature>

“HelloCDVPlugin”是您的iOS类名称,“com.phonegap.plugins.HelloCDVPlugin”是您的Android类名。

答案 1 :(得分:1)

使用以下代码获取js

cordova.define("cordova/plugin/hello",
function (require, exports, module) {

var exec = require('cordova/exec');

function greet(name, win, fail) {
  exec(win, fail, "Hello",
      "greet", [name]);
}

module.exports = {
  greet: greet
}
}
);

并将cordova.exec更改为

exec(this.callbacks.onSuccess, this.callbacks.onError, "Hello", "greet", [defaults]);

您可以从以下链接中找到示例

https://github.com/cristobal/phonegap-ios-datepicker-plugin

您必须根据您的要求修改代码。