1

我在抓取图像的图像源时遇到了一些困难。我尝试了以下方法:

_pjs.getText('div#customerInfo table tr:nth-child(1) td:nth-child(7) img.attributes.src')

_pjs.getText('div#customerInfo table tr:nth-child(1) td:nth-child(7) img[src]')

但似乎没有任何效果。getPattern有没有办法使用或其他方式做到这一点?

我的代码如下:

 pjs.config({ 
    // options: 'stdout', 'file' (set in config.logFile) or 'none'
    log: 'stdout',
    // options: 'json' or 'csv'
    format: 'json',
    // options: 'stdout' or 'file' (set in config.outFile)
    //writer: 'stdout',
    writer: 'file',
    outFile: 'C:\\pjscrape\\pjscrape_out.txt'
});
pjs.addSuite({
    url: 'http://localhost:8080/multivu.portal.htm',
    scraper: function() {
        return [
           _pjs.getText('div#customerInfo table tr:nth-child(1) td:nth-child(2)'),
           _pjs.getText('div#customerInfo table tr:nth-child(1) td:nth-child(4)'),
           _pjs.getText('div#customerInfo table tr:nth-child(1) td:nth-child(7) img.attributes.src')
        ];
    }
}); 
4

1 回答 1

0

我使用了 jQuery,它似乎正在工作!我正在使用这个: $("div#customerInfo table tr:nth-child(1) td:nth-child(7) img").attr("src")

于 2013-11-16T03:26:46.083 回答