通过 COM 接口调用 JavaScript 方法
我正在开发一个连接 Matlab 和 Google Earth 插件的项目。
我的想法是使用COM接口,其中MATLAB作为COM-Client,Internet Explorer 9中的Google Earth Plugin作为COM-Sever。
但直到现在,我仍然不知道如何从 MATLAB 调用 JavaScript 方法,以便可以更新 Internet Explorer 中的 Google Earth 视图。
是否可以通过 COM 调用 JavaScript 方法?
我的第二个想法是基于InternetExplorer构建一个自定义的Web浏览器,然后嵌入自定义的COM方法和属性,以便它可以与Google Earth一起从外部应用程序调用。
任何帮助将不胜感激。
问候, 万
I am working on a project to interface Matlab and Google Earth Plugin.
My idea is to use COM interface, in which the MATLAB as COM-Client and Google Earth Plugin in Internet Explorer 9 as COM-Sever.
But until now, I still don't have idea how can I invoke a JavaScript method from MATLAB so that I can update the view of Google Earth in Internet Explorer.
Is it possible to invoke a JavaScript method via COM?
My second idea is to build a custom webbrowser based on InternetExplorer and then embedded custom COM methods and properties, so that it can function with Google Earth regarding the invoking from external application.
Any help would be highly appreciated.
Regards,
Wan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来唯一受支持的 Google Earth API 是 JavaScript API。因此,您为此嵌入 Internet Explorer 的方法听起来很合理。
我对 MATLAB 的处理不太熟悉,但假设您可以嵌入 Web 浏览器控件,那么您应该能够开始调用脚本。
在最底层,IE Web 浏览器实现了 IWebBrowser2 接口。该接口公开一个 Document 属性,该属性返回一个 IHTMLDocument2 接口。调用 IHTMLDocument2::parentWindow 获取 IHTMLWindow2 接口。
一旦你有了 IHTMLWindow2,根据我的阅读,你应该有几个选择。您的脚本可以调用 IHTMLWindow2::execScript。或者,您的顶级 JavaScript 函数应该通过继承的 IDispatch 作为 IHTMLWindow2 接口上的方法可用:如果您需要返回值,则特别有用。
一些使用 execScript 的 Delphi 代码: http://www.delphidabbler.com/articles?article=21< /a>
一些直接使用 IDispatch 的 .NET Framework 代码(请参阅注释掉的更复杂的代码示例): http:// /www.west-wind.com/weblog/posts/2008/Sep/27/Calling-JavaScript-functions-in-the-Web-Browser-Control
长话短说,本质上你需要做这:
myWebBrowser.Document.parentWindow.MyJavaScriptFunction()
或:
myWebBrowser.Document.parentWindow.execScript("MyJavaScriptFunction();", "JavaScript")
Looks like the only supported Google Earth API is the JavaScript API. So your approach of embedding Internet Explorer for this sounds reasonable.
I'm not so familiar with the MATLAB end of things, but assuming you can embed the web browser control you should then be able to start invoking scripts.
At the lowest level, the IE web browser implements the IWebBrowser2 interface. This interface exposes a Document property, which returns an IHTMLDocument2 interface. Call IHTMLDocument2::parentWindow to get an IHTMLWindow2 interface.
Once you have the IHTMLWindow2, supposedly from my reading you have a couple options. Your script can call IHTMLWindow2::execScript. Alternatively, your top-level JavaScript functions should become available as methods on the IHTMLWindow2 interface via the inherited IDispatch: especially useful if you need the return value.
Some Delphi code that uses execScript: http://www.delphidabbler.com/articles?article=21
Some .NET Framework code that uses IDispatch directly (see the commented-out more complicated code example): http://www.west-wind.com/weblog/posts/2008/Sep/27/Calling-JavaScript-functions-in-the-Web-Browser-Control
To make a long story short, essentially you need to do this:
myWebBrowser.Document.parentWindow.MyJavaScriptFunction()
or this:
myWebBrowser.Document.parentWindow.execScript("MyJavaScriptFunction();", "JavaScript")