1

JSContext を使用して変数を JavaScript 関数に渡すのに問題があります。エラーstringToSendは未定義です:

func sendSomething(stringToSend : String) {
        appController?.evaluateInJavaScriptContext({ (context) -> Void in
            context.evaluateScript("myJSFunction(stringToSend)")
            }, completion: { (evaluated) -> Void in
                print("we have completed: \(evaluated)")
        })
    }
4

2 に答える 2

4

Swift から Javascript への通信方法は次のとおりです。

func sendSomething(stringToSend : String) {
    appController?.evaluateInJavaScriptContext({ (context) -> Void in

       //Get a reference to the "myJSFunction" method that you've implemented in JavaScript
       let myJSFunction = evaluation.objectForKeyedSubscript("myJSFunction")

       //Call your JavaScript method with an array of arguments
       myJSFunction.callWithArguments([stringToSend])

       }, completion: { (evaluated) -> Void in
          print("we have completed: \(evaluated)")
    })
}

このメソッドを呼び出すときは、myJSFunctionが JavaScript コンテキストに実装されていることを確認してください。

callWithArgumentsを使用すると、 stringToSend文字列は自動的に JavaScript 文字列にマップされます

于 2016-01-07T22:40:38.353 に答える
2

この文字列には、次のように、Swift のString Interpolationと追加の引用符が必要でした。

func sendSomething(stringToSend : String) {
        appController?.evaluateInJavaScriptContext({ (context) -> Void in
            context.evaluateScript("myJSFunction('\(stringToSend)')")
            }, completion: { (evaluated) -> Void in
                print("we have completed: \(evaluated)")
        })
    }
于 2016-01-07T21:46:07.543 に答える