我目前正在使用教程LearnYouNode学习NodeJS。它非常好,但是我遇到了一个错误,我无法排除故障。
这是我尝试运行的代码的一部分。它应该按预期工作(我检查解决方案,没关系)。
http.get(url+query, function(response){
var content = "";
response.setEncoding("utf8")
response.on('data',function(data){
content += String(data)
})
response.on('end',function(){
content = JSON.parse(content)
content.forEach(function(item){
results.push(item.name)
})
return results
})
}).on('error',function(e){
console.log(e.message)
})
但它没有。这就是我登录错误的原因'事件。这是它的回报:
connect ECONNREFUSED
事情是:它只是突然出现,我没有修改代码。
那里有什么问题?