我试图拨打发送短信的网址,收到此类错误
{ [Error: getaddrinfo ENOTFOUND alerts.sinfini.com]
code: 'ENOTFOUND',
errno: 'ENOTFOUND',
syscall: 'getaddrinfo',
hostname: 'alerts.sinfini.com' }
我的节点js代码是
var request = require('request');
request(url, function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body) // Show the HTML for the Google homepage.
}else{
console.log(error);
}
});
答案 0 :(得分:0)
在上面的代码中,URL是在哪里定义的?您是否通过其他客户端检查了URL工作正常!无法解析为URL或DNS引发的ENoT