我試圖用rvest軟件包來抓取一組網頁。它適用於大部分的網頁,但我可以用rvest我無法使用rvest獲得價值
url <- "http://www.trademe.co.nz/Browse/CategoryAttributeSearchResults.aspx?search=1&cid=5748&sidebar=1&132=FLAT&selected135=5&134=1&135=5&216=0&216=0&217=0&217=0&153=&122=0&122=0&123=0&123=0&59=25000&59=35000&178=0&178=0&sidebarSearch_keypresses=0&sidebarSearch_suggested=0"
rent_html <- read_html(url)
html_nodes(rent_html, "div.property-card-subtitle") # it works
html_nodes(rent_html, "div.list-view-card-price") # but this is not works
我想在網絡上的租金價格的價值得到租賃費的信息,但我不知道如何訪問它。
'html_nodes(rent_html, 「div.property卡價格容器」)'? –
我只想獲得[div.list-view-card-price] inner [div.property-card-price-containe]的信息。這是不可能的嗎? –