gpt4 book ai didi

jquery - 在 R 中使用 phantomJS 抓取具有动态加载内容的页面

转载 作者:行者123 更新时间:2023-12-01 00:30:29 26 4
gpt4 key购买 nike

背景我目前正在使用 rvest 从 R 中的一些网站抓取产品信息。这适用于除一个网站之外的所有网站,其中内容似乎是通过 angularJS(?)动态加载的,因此无法迭代加载,例如通过 URL 参数(就像我对其他网站所做的那样)。具体网址如下:

http://www.hornbach.de/shop/Badarmaturen/Waschtischarmaturen/S3584/artikelliste.html

请记住,我的计算机没有管理员权限,只能实现不需要或仅一次性授予管理员权限的解决方案

所需输出最后,R 中的表格包含产品信息(例如标签、价格、评级)=> 不过,在这个问题中,我纯粹需要帮助来动态加载和存储网站;我可以自己处理 R 中的后处理。如果你能把我推向正确的方向,那就太好了;也许下面列出的我的方法之一是正确的,但我似乎无法将这些方法转移到指定的网站。

当前方法我发现 phantomJS 作为一个 headless 浏览器,据我所知应该能够处理这个问题。我对 Java 脚本几乎一无所知,而且语法与我更习惯的语言(R、Matlab、SQL)有很大不同(至少对我来说),我真的很难实现其他地方建议的可能适用的方法我的代码。基于this example (非常感谢)我设法使用以下代码从显示的第一个页面至少检索信息:

R:

require(rvest)

## change Phantom.js scrape file
url <- 'http://www.hornbach.de/shop/Badarmaturen/Waschtischarmaturen/S3584/artikelliste.html'

lines <- lines <- readLines("scrape_final.js")
lines[1] <- paste0("var url ='", url ,"';")
writeLines(lines, "scrape_final.js")

## Download website
system("phantomjs scrape_final.js")

### use Rvest to scrape the downloaded website.
web <- read_html("1.html")
content <- html_nodes(web, 'div.paging-indicator')# %>% html_attr('href')
content <- html_text(content) %>% as.data.frame()

以及相应的PhantomJS脚本:

var url ='http://www.hornbach.de/shop/Badarmaturen/Waschtischarmaturen/S3584/artikelliste.html';
var page = new WebPage()
var fs = require('fs');

page.open(url, function (status) {
just_wait();
});


function just_wait() {
setTimeout(function() {
fs.write('1.html', page.content, 'w');
phantom.exit();
}, 2500);
}

什么不起作用//研究虽然此代码从第一页检索信息,但我确实需要遍历所有 x 个产品页面。我尝试用以下示例扩展上面的代码:

Unable to scrape multiple pages using phantomjs in r

[使用phantomjs抓取动态加载页面][3]

[R 中的网页抓取动态加载数据][4]

这些例子让我想到了这个想法

  • 点击“下一页”按钮
  • 或者以某种方式注入(inject)正确的分页值

    1. 点击“下一页”按钮

看起来像下面这样

    var url ='http://www.hornbach.de/shop/Badarmaturen/Waschtischarmaturen/S3584/artikelliste.html';
var page = require('webpage').create();
var fs = require('fs');

page.open(url, function (status) {
age.open(url, function() {
page.includeJs("http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", function() {
page.evaluate(function() {
$("paging-btn right").click();
just_wait();
});
phantom.exit()
});

});


function just_wait() {
setTimeout(function() {
fs.write('1.html', page.content, 'w');
phantom.exit();
}, 2500);
}

但是由于语法不佳以及其他原因,这对我没有任何帮助。不幸的是,从 R 调用这个脚本不会产生错误,它只是运行了很长时间,所以我必须退出它(而工作脚本只需要几秒钟)。

我使用 Firefox 中的小工具检查器来检索按钮名称,但这也可能是错误的:

<a class="paging-btn right rel="next" ng-click="goToNextPage()" 
ng-hide="articleData.pageNumber == articleData.pageCount"
href="javascript:void(0);">right</a>
  • 在加载时更改分页参数
  • 我尝试处理此处给出的示例 Passing variable into page.evaluate - PhantomJS

    但也刚刚得到了一个从未以 R 结尾的脚本

    附加说明看起来我只能发布两个链接,所以不幸的是我无法链接我研究和测试过的所有来源。

    我很清楚这是一次巨大而困惑的信息,如果您可以帮助我改进/更好地构建我的问题,请告诉我。我会尽力做出回应并为您提供任何您需要的帮助。

    最佳答案

    我将 PhantomJS 代码分成两部分,以避免出现错误消息。我非常有信心可以先读取并存储网站,然后点击“下一页”按钮并输出新的网址,但不幸的是,这并没有在没有错误消息的情况下成功。

    以下R代码是最内部的抓取循环(从一个子子类别的页面检索信息,相应地调用/更改PhantomJS脚本)。

       for (i3 in 1:num_prod_pages) {

    system('phantomjs readhtml.js') # return html of current page via PhantomJS

    ### Use Rvest to scrape the downloaded website.

    html_filename <- paste0(as.character(i3), '.html') # file generated in PhantomJS readhtml.js
    web <- read_html(html_filnamee)
    content <- html_nodes(web, 'div.article-pricing') # %>% html_attr('href')
    content <- html_text(content) %>% as.data.frame()

    ### generate URL of next page

    url_i3 <- capture.output(system("phantomjs nextpage.js", intern = TRUE)) %>%
    .[length(.)] %>% # last line of output contains
    str_sub(str_locate(., 'http')[1], -2) # cut '[1] \' at start and ' \" ' at end

    # Adapt PhantomJS scripts to new url

    lines <- readLines("readhtml.js")
    lines[2] <- paste0("var url ='", url_i3 ,"';")
    lines[11] <- paste0(" fs.write('", as.character(i3), ".html', page.content, 'w');")
    writeLines(lines, "readhtml.js")

    lines <- readLines("nextpage.js")
    lines[2] <- paste0("var url ='", url_i3 ,"';")
    writeLines(lines, "nextpage.js")
    }

    以下PhantomJS代码“readhtml.js”代码在本地存储具有当前URL的网站

    var webPage = require('webpage');
    var url ='http://www.hornbach.de/shop/Badarmaturen/S476/artikelliste.html';
    var fs = require('fs');
    var page = webPage.create();
    var system = require('system');

    //page.settings.userAgent = 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'
    page.settings.userAgent = 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)'

    page.open(url, function(status) {
    if (status === 'success') {
    fs.write('1.html', page.content, 'w');
    console.log('htmlfile ready');
    phantom.exit();
    }
    })

    下面的PhantomJS代码“nextpage.js”代码点击“下一页”按钮并返回新的URL

    var webPage = require('webpage');
    var url ='http://www.hornbach.de/shop/Badarmaturen/S476/artikelliste.html';
    var fs = require('fs');
    var page = webPage.create();
    var system = require('system');

    page.settings.userAgent = 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0';

    page.open(url, function(status) {
    if (status === 'success') {
    page.evaluate(function() {
    document.querySelector('a.right:nth-child(3)').click();
    });
    setTimeout(function() {
    var new_url = page.url;
    console.log('URL: ' + new_url);
    phantom.exit();
    }, 2000);
    };
    });

    总而言之,不是很优雅,但缺乏其他输入,我关闭了这个,因为它工作时没有任何错误消息

    关于jquery - 在 R 中使用 phantomJS 抓取具有动态加载内容的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46112254/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com