我正在使用phonegap。目前在 android 上,我可以使用我所做的非常简单的功能来更改页面:
public boolean execute(String action, CordovaArgs args, CallbackContext callbackContext) throws JSONException {
MainActivity ma = (MainActivity) cordova.getActivity();
ma.reload(args.getString(0));
return (true);
}
在mainActivity中:
super.loadUrl("file:///android_asset/www/" + url, 1000);
但是我是 Objective C 和 iO 的新手,我无法找到正确的关键字或答案的开头。我能够拥有该execute
功能的等价物,但是我不知道如何获取 mainActivity 并重新加载页面
到目前为止,我是我的插件,我有以下代码,但它不起作用:/
- (void)execute:(CDVInvokedUrlCommand*)command
{
//id message = [command.arguments objectAtIndex:0];
id message = @"buy/buy.html";
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:message]]];
}
编辑:
我尝试执行以下操作:
@implementation Redirect
- (void)execute:(CDVInvokedUrlCommand*)command
{
id message = [command.arguments objectAtIndex:0];
NSString* newUrl = message;
NSString* javaScript = nil;
NSString *jsCallBack = [[NSString alloc] initWithFormat:@"changeUrl('%@');", newUrl];
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:message];
javaScript = [pluginResult toSuccessCallbackString:jsCallBack];
[self writeJavascript:javaScript];
}
@end
在html中:
window.changeUrl = function (url){
alert("ici");
navigator.app.loadUrl(url);
}
var Redirect= function(){
return cordova.exec( function(data){ alert(data);console.log("Success");}, function(){ console.log("Fail");},
"Redirect",
"execute",
[location.href]);
};
我确定插件何时被调用,但如果我在changeUrl
函数中添加警报,则不会显示任何内容