ajax动态加载的html页面上的YQL查询
我想使用 YQL 抓取页面,但页面是使用 json 文件通过 ajax 加载的,返回的数据是没有任何数据的 html 文件。有没有办法在通过 YQL 返回数据之前确保页面已完全加载?提前致谢!瑞安
I want to scrape a page using YQL but the page is loaded via ajax using json files and the returned data is the html file with out any data. It there a way to make sure the page is fully loaded before returning the data via YQL? Thanks in advance! Ryan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,jquery ajax success 函数将返回完全加载的响应。我经常使用它,但我从未让它从 ajax 请求返回部分响应,而我需要等待更多数据。
您是否使用 Firebug NET 选项卡来验证 ajax 请求中发送和接收的内容?如果没有,那么这是一个开始了解发生了什么的好地方。
As far as I know, jquery ajax success function will return the fully loaded response. I use it quite often and I have never had it return a partial response from an ajax request where I would be required to wait for more data.
Have you used the Firebug NET tab to verify what is being sent and received back in your ajax requests? If not, thats a good place to start to see whats going on.