我将 CordovaLib 3.8.0 添加到 Swift 项目中(作为独立的 Web 视图 (Cleaver),而不是完全基于 Cordova 的项目)。为此,我按照 PhoneGap 网站上的说明进行操作,然后创建并添加了以下桥接头:
// Cordova-Bridging-Header.h
#import <Cordova/CDV.h>
然后我创建了一个简单的插件:
// HelloPlugin.swift
import Foundation
@objc(HelloPlugin) class HelloPlugin: CDVPlugin {
override func pluginInitialize() {
super.pluginInitialize();
}
func sayHello( command: CDVInvokedUrlCommand ) {
let pluginResult = CDVPluginResult(status: CDVCommandStatus_OK, messageAsString: "hello");
commandDelegate.sendPluginResult( pluginResult, callbackId: command.callbackId );
}
}
然后我将它添加到我的 config.xml
// config.xml
[...]
<feature name="HelloPlugin">
<param name="ios-package" value="HelloPlugin" />
<param name="onload" value="true" />
</feature>
当我运行我的应用程序(在模拟器中)时,我看到 cordova 和插件都在加载:
2015-04-07 20:28:09.277 Test[32687:4349827] Apache Cordova native platform version 3.8.0 is starting.
2015-04-07 20:28:09.278 Test[32687:4349827] Multi-tasking -> Device: YES, App: YES
2015-04-07 20:28:09.279 Test[32687:4349827] Unlimited access to network resources
2015-04-07 20:28:09.362 Test[32687:4349827] [CDVTimer][helloplugin] 0.042975ms
2015-04-07 20:28:09.362 Test[32687:4349827] [CDVTimer][TotalPluginStartup] 0.176013ms
但是,如果我通过 safari 进入 JS 控制台并尝试调用我的 sayHello 函数,我将一无所获。
// JS (ran manually on console)
cordova.exec(
// success
function(){
console.log( 'success ->', this, arguments );
},
// failure
function(){
console.log( 'fail ->', this, arguments );
},
// plugin name
'HelloPlugin',
// method name
'sayHello',
// arguments
['a', 'b', 2]
);
然后我进入 CDVViewController.m 并在 URL 方案处理程序中放置一个断点:
- (BOOL)webView:(UIWebView*)theWebView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType
{
NSURL* url = [request URL];
/*
* Execute any commands queued with cordova.exec() on the JS side.
* The part of the URL after gap:// is irrelevant.
*/
if ([[url scheme] isEqualToString:@"gap"]) {
我发现执行 cordova.exec() 时根本没有调用此代码。我在一个以基本相同方式使用 Cordova 的 Objective-C 项目中的同一位置放置了一个断点,然后断点触发。
我有什么遗漏或应该尝试的吗?