I am trying to call a javascript function by passing in JSValue as a parameter.

func callJavascriptFunction(value: JSValue, context: JSContext) {
    context.evaluateScript("functionInJavascript(\(value))")
}

I got this error message:

JS Error: SyntaxError: Unexpected identifier 'Object'. Expected either a closing ']' or a ',' following an array element.

Could anyone please help me solve this?

1

There are 1 best solutions below

0
On

Just got it working:

context.objectForKeyedSubscript("functionInJavascript").callWithArguments([value])