업데이트 - 자동 응답 DNS가 컴퓨터에서 제대로 확인되었는지 확인하려면이 코드를 통해 URL에 도달 할 수 있는지 확인하십시오. nodejs.org/ 문서/최신/API/dns.html #의 dns.resolvenodejs httprequest with data - getaddrinfo ENOENT
원래의 질문에
내가 그들을 대신하여 {오프 코스에서 HttpRequest를 할 사용자가 부탁 할 수있는 프로그램을 기반으로 노드를 쓰고 있어요 그들은 몇 가지 데이터와 함께 전화 할 수있는 방법을 제공합니다.}하지만 httprequest를 할 때마다 오류가납니다.
앞에 : ("// HTTP"그래서)한다 getaddrinfo의 ENOENT 이 내 코드는 내가 (당신이 httpaction로 통과) 호스트는 계획이있는 경우 이런 일이 본 적이
function makehttprequest(deviceid, httpaction, httppath,methods, actiondata, callback) {
console.log('we are here with httpaction' + httpaction + ' path ' + httppath + ' method ' + methods + ' action data ' + actiondata);
//do the http post work, get the data, and call the callback function with return data
var options = {
host: httpaction,
port: 80,
path: httppath,
method: methods
};
try {
var req = http.request(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log('BODY: ' + chunk);
});
});
} catch(e) {
console.log('error as : ' + e.message);
}
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
// write data to request body
console.log('writing data to request ..');
req.write(actiondata);
console.log('finished writing data to request…');
req.end();
console.log('request ended…');
}
로컬 개발의 경우 localhost 대신 127.0.0.1을 사용하십시오. –