0

我在其中一个插件中有这个 JS。我正在尝试将其移植到 Phonegap 2.1。问题是接收者代码无法解析调用者函数名称,它说<null>

    PhoneGap.exec("localizable.get", name,GetFunctionName(success));

我试过了

    cordova.exec("localizable.get", name, GetFunctionName(success));
    cordova.exec("localizable.get", name, success);
    cordova.exec("localizable.get", name, success.name);
4

1 回答 1

0

exec 参数应该是:

cordova.exec(successfunction, errorfunction, "service", "action", [arguments]);
于 2012-11-11T23:04:59.793 回答