0
我想讓我的網站刮板從網站上拉出每篇文章的標題(https://hypebeast.com/footwear),但我似乎無法得到任何東西,但未定義或一些非常麻煩的錯誤。我究竟做錯了什麼?下面是我的代碼片段:使用NodeJS和Cheerio的網頁抓取
const request = require('request');
const cheerio = require('cheerio');
var titles = [];
request('https://hypebeast.com/footwear', function(err, resp, body) {
var $ = cheerio.load(body);
$('.title').each(function(){
var title = $(this).attr('span');
titles.push(title);
});
console.log(titles);
});
這裏的錯誤: http://imgur.com/chB9v6h
請出示您的錯誤。 – Aswin