我正在刮齐洛,希望能刮掉所有的书页。我使用的是for循环,如下所示。但似乎我只收到了第一页的结果。
for (page_result in 1:20) {
zillow_url = paste0("https://www.zillow.com/orlando-fl/",page_result,"_p/?searchQueryState=%7B%22
pagination%22%3A%7B%22currentPage%22%3A",page_result,"%7D%2C%22usersSearchTerm%22%3A%22
Orlando%2C%20Fl%22%2C%22mapBounds%22%3A%7B%22west%22%3A-81.6603646328125%2C%22east%22%3A-80.8144173671875%2C%22
south%22%3A28.191492307595613%2C%22north%22%3A28.794962421299882%7D%2C%22
regionSelection%22%3A%5B%7B%22regionId%22%3A13121%2C%22
regionType%22%3A6%7D%5D%2C%22isMapVisible%22%3Atrue%2C%22filterState%22%3A%7B%22sort%22%3A%7B%22value%22%3A%22globalrelevanceex
%22%7D%2C%22ah%22%3A%7B%22value%22%3Atrue%7D%7D%2C%22isListVisible%22%3Atrue%7D")
}
zpg = read_html(zillow_url)
res_all <-NULL
zillow_pg <-tibble(
addr = zpg %>% html_nodes(".list-card-addr") %>% html_text(),
price = zpg %>% html_nodes(".list-card-price") %>% html_text(),
details = zpg %>% html_nodes(".list-card-details") %>% html_text() ,
heading= zpg %>% html_nodes(".list-card-info a") %>% html_text() ,
type = zpg %>% html_nodes(".list-card-statusText") %>% html_text())
res_all <- res_all %>% bind_rows(zillow_pg)发布于 2021-07-13 21:35:29
您可能对ZillowR包感兴趣
https://www.rdocumentation.org/packages/ZillowR/versions/0.1.0
在线房地产公司
Zillow通过REST为美国提供房地产和抵押贷款数据。ZillowR包为每个API服务提供了一个R函数,使得发出API调用和将响应处理为方便的、R友好的数据结构变得很容易。有关Zillow文档,请参见http://www.zillow.com/howto/api/APIOverview.htm。
您的代码是90%的道路上。我无法测试,但我认为这些编辑会让你走向正确的方向:
res_all <-NULL
for (page_result in 1:20) {
zillow_url = paste0("https://www.zillow.com/orlando-fl/",page_result,"_p/?searchQueryState=%7B%22
pagination%22%3A%7B%22currentPage%22%3A",page_result,"%7D%2C%22usersSearchTerm%22%3A%22
Orlando%2C%20Fl%22%2C%22mapBounds%22%3A%7B%22west%22%3A-81.6603646328125%2C%22east%22%3A-80.8144173671875%2C%22
south%22%3A28.191492307595613%2C%22north%22%3A28.794962421299882%7D%2C%22
regionSelection%22%3A%5B%7B%22regionId%22%3A13121%2C%22
regionType%22%3A6%7D%5D%2C%22isMapVisible%22%3Atrue%2C%22filterState%22%3A%7B%22sort%22%3A%7B%22value%22%3A%22globalrelevanceex
%22%7D%2C%22ah%22%3A%7B%22value%22%3Atrue%7D%7D%2C%22isListVisible%22%3Atrue%7D")
zpg = read_html(zillow_url)
zillow_pg <-tibble(
addr = zpg %>% html_nodes(".list-card-addr") %>% html_text(),
price = zpg %>% html_nodes(".list-card-price") %>% html_text(),
details = zpg %>% html_nodes(".list-card-details") %>% html_text() ,
heading= zpg %>% html_nodes(".list-card-info a") %>% html_text() ,
type = zpg %>% html_nodes(".list-card-statusText") %>% html_text())
res_all <- bind_rows(res_all, zillow_pg)
}https://stackoverflow.com/questions/68369482
复制相似问题