我在尝试从本机代码执行javascript函数时遇到了一些困难。我希望脚本编写者能够在Javascript中定义“配方”。它是通过调用我从本机代码公开的配方创建函数创建的。配方函数采用配置字典,它需要配方名称和操作。该操作应该是无参数,无返回值的函数。
回到本机代码,当我处理配置字典时,我似乎无法获得对定义的动作函数的引用。我实际得到的是一个没有键的NSDictionary。
感谢您的帮助。
的Javascript
// topLevel is a valid object I expose. It has a module
// function that returns a new module
var module = topLevel.module("Demo - Recipe");
// module has a recipe method that takes a config dict
// and returns a new recipe
module.recipe({
name: "Recipe 1",
action: function() {
topLevel.debug("Hello from Recipe 1!");
}
});
原生代码:
@objc public protocol ModuleScriptPluginExports: JSExport {
func recipe(unsafeParameters: AnyObject) -> ModuleScriptPlugin
}
...
public func recipe(unsafeParameters: AnyObject) -> ModuleScriptPlugin {
guard let parameters : [String:AnyObject] = unsafeParameters as? [String: AnyObject] else {
// error, parameters was not the config dict we expected...
return self;
}
guard let name = parameters["name"] as? String else {
// error, there was no name string in the config dict
return self;
}
guard let action = parameters["action"] as? () -> Void else {
// error, action in the config dict was not a () -> Void callback like I expected
// what was it...?
if let unknownAction = parameters["action"] {
// weird, its actually a NSDictionary with no keys!
print("recipe action type unknown. action:\(unknownAction) --> \(unknownAction.dynamicType) ");
}
...
}
答案 0 :(得分:1)
好的,我把它排除了。发布这个以防万一其他人遇到这个。
问题出在Swift代码中,JSValue被强制转换为字典:
parameters : [String:AnyObject] = unsafeParameters as? [String: AnyObject]
使用toDictionary(),这样做似乎扔掉了函数属性。
相反,JSValue应该保持完好,然后使用valueForProperty来获取本身就是JSValue的函数。
let actionValue = parameters.valueForProperty("action");
actionValue.callWithArguments(nil);