cocos creator2.0.10 webview调用evaluateJS会失败?

this.webview.evaluateJS(“onTest()”);

报错日志:

底层代码:
static bool js_webview_WebView_evaluateJS(se::State& s)
{
cocos2d::WebView* cobj = (cocos2d::WebView*)s.nativeThisObject();
SE_PRECONDITION2(cobj, false, “js_webview_WebView_evaluateJS : Invalid Native Object”);
const auto& args = s.args();
size_t argc = args.size();
CC_UNUSED bool ok = true;
if (argc == 1) {
std::string arg0;
ok &= seval_to_std_string(args[0], &arg0);
SE_PRECONDITION2(ok, false, “js_webview_WebView_evaluateJS : Error processing arguments”);
cobj->evaluateJS(arg0);
return true;
}
SE_REPORT_ERROR(“wrong number of arguments: %d, was expecting %d”, (int)argc, 1);
return false;
}

2.21 rc9 已经修复