访问使用 javascript 生成的文本
这个网站有一个自定义的google搜索框:
搜索结果是由一段生成的JS 代码。我如何使用 wget 和/或 C# 的 WebClient
访问这些结果?
This website has a custom google search box:
The search results are generated by a piece of JS code. How would I access these results using wget and/or C#'s WebClient
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来该页面上的搜索是正常的谷歌网站搜索。尝试使用以下网址使用 wget,其中“asdf”是您的搜索
It looks like the searches on that page are normal google site searches. Try wget with the following url, where 'asdf' is your search
您需要执行网络浏览器的操作 - 渲染页面。也许您可以提取对提供结果的 Web 服务的 js 调用,然后执行此请求并直接解析输出。
You need to to what your web browser does - render the page. Maybe you can extract the js call to the webservice providing the results and just execute this request and parse the output directly.
您需要使用支持 JavaScript 的可编程浏览器来访问它。
You need to access it with a programmable browser supporting JavaScript.