从以编程方式下载的网页中评估/解析 javascript
我想知道是否有某种类型的库(最好是.NET)允许下载网页(例如,使用 HttpWebResponse),可以评估 javascript 变量并评估和解析 javascript 过程。
I was wondering if there was some type of library (preferably for .NET) that allows a web page downloaded (for instance, using HttpWebResponse) that can evaluate javascript variables and evaluate and parse javascript procedures.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 Awesomium。 .NET + webkit(chrome 渲染引擎)。来自网站:
抱歉,它不是 WPF 特有的。 Chris Cavanagh 移植了它,但你可以从您的 .net 代码中使用 awesomium。
Check out Awesomium. .NET + webkit (chrome rendering engine). From the website:
Sorry, its not specifically WPF. Chris Cavanagh ported it, but you can use awesomium from your .net code.
Jint 是 .NET 的开源 Javascript 解释器。例如,您可以在应用程序中运行 Javascript 代码,并交换对象以实现自动化。
如果您想模拟浏览器,您甚至可以定义 DHTML 对象模型并将其作为参数传递。
Jint is an open-source Javascript interpreter for .NET. You can run Javascript code within your application, and exchange object for doing automation for instance.
You can even define a DHTML object model and pass it as an argument if you want to simulate a browser.
这需要一些工作,但应该可以使用 ECMAScript.NET 来完成。
It will require some work, but it should be possible to accomplished using ECMAScript.NET.