例如,我想要在芝加哥(ORD)和NewDelhi(DEL)之间运营的航班的废料飞行数据。我会在makemytrip上搜索航班,这是生成的网址 - http://us.makemytrip.com/international/listing/exUs/RT/ORD-DEL-D-22May2016_JFK-DEL-D-25May2016/A-1/E?userID=90281463121653408
当我尝试使用rvest包读取此HTML页面时,这就是我得到的 -
htmlpage<-read_html("http://us.makemytrip.com/international/listing/exUs/RT/ORD-DEL-D-22May2016_JFK-DEL-D-25May2016/A-1/E?userID=90281463121653408")
htmlpage
{xml_document}
<html>
[1] <head>\n <meta http-equiv="Content-Type" cont ...
[2] <body onload="done_loading();">\n\n <div id= ...
myhtml<-html_nodes(htmlpage,".flight_info")
> myhtml
{xml_nodeset (0)}
需要帮助解析/抓取这些数据,并了解这里出了什么问题。
谢谢!