npm 요청 모듈을 실행할 때 출력이 undefined
인 이유는 무엇입니까?npm 요청 moudule이 출력을 제공하지 않음
const request = require('request');
request({
url: 'https://maps.googleapis.com/maps/api/geocode/json?address=1301%20lombard%20street%20philadelphia',
json: true
}, (error, response, body) => {
console.log(body);
});
요청을 설치했습니다. 인터넷 연결에 어떤 문제가있을 수 있습니까? – coders
앱에서 인터넷에 연결되어 있지 않습니다. 어쩌면 방화벽에 의해 차단되었을 수도 있습니다. 코드가 내 컴퓨터에서 잘 작동하지만 WiFi를 끄면 'undefined'라는 메시지가 나타납니다. – Teukros
그럼 내가해야 할 일이 무엇입니까 ?? – coders