关于使用YQL获取json中的html网页的初学者问题
我正在尝试使用 yql 抓取网页。我认为将其输出为 json 会将所有内容作为一个对象提供。但是,如果有任何 html 标签,如 <强>该文本不包含在“内容”中。有什么办法可以解决这个问题,还是我应该将其作为 xml 和正则表达式从标签中获取?
I am trying to scrape a webpage using yql. I thought outputing it as json would give me all the content as one object. However if there are any html tags like < strong > that text is not included in "content". Is there any way around this or should I just get it as xml and regex out the tags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 YQL 语句是 select * from html where url="http://www.cnn.com",它应该返回页面中的所有元素。
It should return all elements from the page if your YQL statement is select * from html where url="http://www.cnn.com".