gpt4 book ai didi

javascript - 将 obj-c 类传递给 javascript 不起作用。我究竟做错了什么?

转载 作者:行者123 更新时间:2023-11-30 05:59:27 24 4
gpt4 key购买 nike

我正在用 javascript 编写一些后端代码,并计划将 native 代码用于 GUI。这在 Android 中工作得很好,但我在 Mac OS X 上的 Cocoa 中工作时遇到了一些问题。我已经按照苹果教程学习了这个问题,但它就是行不通。在您看过代码后,让我试着解释一下。

索引.html

<html>
<head>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", ready, false);

function ready() {
document.write(returnString());
bridge.onBackendReady();
}

function returnString() {
return "Hello World!!!!";
}
</script>
</head>
<body>

</body>
</html>

AppDelegate.m

#import "AppDelegate.h"
#import "BackendBridge.h"


@implementation AppDelegate

@synthesize webview;
@synthesize backend;


-(void)applicationDidFinishLaunching:(NSNotification *)notification
{
backend = [[BackendBridge alloc] init];

NSString *backendPath = [[NSBundle mainBundle] pathForResource:@"Index" ofType:@"html"];
NSURL *backendUrl = [NSURL fileURLWithPath:backendPath];

[[webview mainFrame] loadRequest:[NSURLRequest requestWithURL:backendUrl]];
[[webview windowScriptObject] setValue:backend forKey:@"bridge"];
}

@end

后端桥.m

#import "BackendBridge.h"


@implementation BackendBridge

-(void)onBackendReady
{
NSLog(@"Ready");
}

@end

因此,我在这里尝试做的事情相当简单。从 javascript 调用 BackendBridge 类中的函数 onBackendReady。据我从 apples WebView api 和教程中了解到,这应该是正确的方法,但它不起作用(NSLog 调用不运行)。我知道 javascript 函数按预期工作,因为在我的用户界面中我可以看到字符串“Hello World!!!!”...

最佳答案

WebScriptObject.h 中的注释说:

By default, no properties or functions are exported. A class must implement
+isKeyExcludedFromWebScript: and/or +isSelectorExcludedFromWebScript: to
expose selected properties and methods, respectively, to JavaScript.

也许将此添加到 BackendBridge:

+ (BOOL)isSelectorExcludedFromWebScript:(SEL)selector
{
return selector != @selector(onBackendReady);
}

关于javascript - 将 obj-c 类传递给 javascript 不起作用。我究竟做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9580311/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com