使用 WebKit 浏览器的 InvokeScriptMethod() 时出现问题
我在 WPF 应用程序中使用 WebKit 浏览器控件。我使用它是因为我想在其上呈现启用 Protovis 的 HTML。到目前为止我已经成功了。现在,我想将一些参数(特别是 double、int 和字符串数组)传递给控件内呈现页面的 Java 脚本方法之一。我尝试了 WebKit 中的 InvokeScriptMethod() API,但如果我想传递参数,它对我不起作用。如果我调用不带任何参数的脚本方法,一切都会正常工作。
有人可以帮助我吗?我很渴望它。:)
谢谢, 奥姆卡
I am using WebKit browser control in my WPF application. I am using it because I want to rendered Protovis enabled HTML on it. Till this point I am successful. Now, I want to pass some parameters specially arrays of double, int and strings to one of the Java script method of the rendered page within the control. I tried InvokeScriptMethod() API from WebKit but it did not work for me if I want to pass parameter(s). Everything works well if I invoke the script method which doesn't take any parameter.
Can somebody help me? I am desperate for it.:)
Thanks,
Omkar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用,
webKitBrowser1.StringByEvaluatingJavaScriptFromString("javascript:YourMethod();");
You can use,
webKitBrowser1.StringByEvaluatingJavaScriptFromString("javascript:YourMethod();");
如果我不等到站点完全加载,我会得到 HRESULT 作为 E_FAIL。
您必须等到此事件:
被触发。在那之后,一切对我来说都很顺利。
I get HRESULT as E_FAIL if I don't wait until the site is fully loaded.
You have to wait until this event:
is fired. After that, everything worked fine for me.