当我根据rbloggers教程抓取imdb.com时,我能够获得所有值。
当我想要抓取https://www.pelikan.sk/sk/deals/list时,它会显示所有尝试的pelikansk = read_html("http://www.imdb.com/title/tt1490017/")
pelikansk %>%
html_node("h2 .ng-binding") %>%
html_text()
我的代码: 用于提取标题
pelikansk %>%
html_node(".ng-scope+ .ng-binding") %>%
html_text()
提取价格:
pelikansk %>%
html_node(".save .ng-binding") %>%
html_text()
提取折扣:
var arrayOfObjects = [
{'color': 'red', 'size': 10},
{'color': 'blue', 'size': 4},
{'color': 'green', 'size': 6}
];
for(var i=0; i<arrayOfObjects.length; i++) {
console.log(arrayOfObjects[i]['color']);
console.log(arrayOfObjects[i]['size']);
}
它显示所有尝试的相同错误。我想html_node对所有人都是正确的。你能否建议,是什么原因导致问题?
谢谢!