我使用WKWebview.evaluateJavaScript()执行javascript,我可以从javascript获取字符串,对象和数组。
evaluateJavaScript("document.getElementById('title').innerHTML;")
/*
output:
Optional(hhhhhhhhhhhhhh)
*/
evaluateJavaScript("[1,2];")
/*
output:
Optional(<__NSArrayM 0x17005faa0>(
1,
2
)
*/
evaluateJavaScript("{a:1, b:2};")
/*
output:
Optional({
a = 1;
b = 2;
})
*/
当我执行这段代码时
evaluateJavaScript("document.getElementById('test').getBoundingClientRect();")//an object of { x: 0, y: 0, width: 0, height: 0, top: 0, right: 0, bottom: 0, left: 0 }
我得到这个错误,
可选(错误域= WKErrorDomain代码= 5“执行JavaScript不支持的返回类型”
UserInfo = {NSLocalizedDescription =执行JavaScript不支持的返回类型})无
任何帮助将不胜感激,谢谢。
最佳答案
我认为这里document.getElementById('liveMovie').getBoundingClientRect();
的结果不被swift支持。
所以我将其更改为这样的数组,
self.wk.evaluateJavaScript("var rect = document.getElementById('liveMovie').getBoundingClientRect();[rect.left, rect.top];") {
(result, error) -> Void in
if((result) != nil)
{
self.player?.view?.frame.origin.x = (result as! Array)[0]
self.player?.view?.frame.origin.y = (result as! Array)[1]
}
}