如何解析包含 javascript 的渲染网页
如何从呈现的网页中提取数据? 其中java脚本会随时间更新数据。 是否可以编写可以从网页java脚本访问变量的用户脚本? 请建议实现这一目标的可能方法。
How can one extract data from a rendered web page?
In which java script would update the data with time.
Is it possible to write user script which can access varibles from webpage java script?
Please suggest possible way to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据图灵停止问题定理,你不能。
这就是我们说 JavaScript 是一种图灵完备语言的意思。唯一的方法是执行 JavaScript 并让它呈现页面。
according to Turing's Halting Problem Theorem, you can't.
That's what we mean when we say that JavaScript is a Turing complete language. The only way is to execute the JavaScript and let it render the page.
这取决于你的编程语言。
在 C# 中,您可以使用 webbrowser 控件 ,然后使用 Webbrowser.Document 属性获取 HTMLDocument 对象来获取当前标记。
要调用文档中的 javascript 函数,请使用 浏览器控件的 ObjectForScripting 属性。
it depends on your programming language.
In C# you could use a webbrowser control, then use the Webbrowser.Document property to get a HTMLDocument object to get the current markup.
To invoke javascript function in the document, use the ObjectForScripting property of the Browser control.