我正在尝试在正在构建的Web应用程序中使用以下节点模块https://github.com/jprichardson/node-google。自述文件说如下使用它。但是res.links对我来说是一个空清单。我完全按照示例所示使用它。该模块损坏了还是对我不起作用?
/*This prints out the first 50 search results of the query `node.js best practices`. */
var google = require('google')
google.resultsPerPage = 25
var nextCounter = 0
google('node.js best practices', function (err, res){
if (err) console.error(err)
for (var i = 0; i < res.links.length; ++i) {
var link = res.links[i];
console.log(link.title + ' - ' + link.href)
console.log(link.description + "\n")
}
if (nextCounter < 4) {
nextCounter += 1
if (res.next) res.next()
}
})
我希望res.links显示一系列链接。但是,它返回空列表。