我正在尝试使用 jQuery 在 Node.js 上构建一个小型应用程序,它将请求提供的位置的内容。如果 URL 指向的资源不是 HTML,它将输出返回的内容类型。否则,它将读取 HTML 数据并输出页面标题和描述,然后是页面上可点击链接的列表。这是我的代码:
var request = require('request'),
jsdom = require('jsdom'),
fs = require('fs'),
colors = require('colors'),
argv = require('optimist').argv;
colors.setTheme({ c1: 'blue', c2: 'red', c3: 'inverse' });
var myFunc = function( link, cb ){
console.log( 'requesting page: '.c3 + link.c3 );
// Step 1 - request to the page
request({
uri: link,
}, function (err, response, body) {
// Handle response issues
if ( err || response.statusCode !== 200 ) {
if ( !response ){
console.log( 'Ooops! page doesn`t exist or wrong URL format'.c2 )
} else {
console.log('error: '+ response.statusCode )
}
cb();
} else {
console.log( 'response code: ' + response.statusCode )
// Step 2 - invoking jsdom and jQuery
jsdom.env({
html: body,
src: [
fs.readFileSync(__dirname + "/lib/jquery-1.9.1.min.js").toString()
],
done: function(err, window) {
if(err) {
cb();
} else {
var $ = window.$;
// Step 3, final part - parse content with jQuery selectors
console.log( '\nThis page is:\n'.c1 + $(body)[0]._ownerDocument._contentType )
console.log( '\nPage title: \n'.c1 + $('title').text().trim() );
console.log( $('head meta[name="description"]').attr('content') !== undefined ? '\nPage description: \n'.c1 + $('head meta[name="description"]').attr('content') + '\n' : '\nPage description: \n'.c1 + 'No description on the page\n'.c2);
console.log( '\nClickable links on the page: \n'.c1 )
$('a').each(function(){
if ( $(this).attr('href') !== undefined ){
console.log( $(this).attr('href').slice(0, 4) == 'http' ? $(this).attr('href') : link + $(this).attr('href'))
}
});
cb();
}
}
})
}
}
);
};
所以它完美地抓取了一个 html 页面,但我不知道如何实现这部分
如果 URL 指向的资源不是 HTML,它将输出返回的内容类型。
请分享一个想法如何做这部分。提前致谢!