Axios错误:连接ECONNREFUSED 127.0.0.1:80

时间:2020-04-30 19:04:25

标签: javascript node.js axios

您好,我是Nodejs的新手,运行我的应用程序时出现此错误“错误:连接ECONNREFUSED 127.0.0.1:80” 这是我的代码

const axios = require('axios')

const url = 'api.openweathermap.org/data/2.5/weather?q=London,uk&appid=4dd23b28fb57078c0d5ec9c653e203b2'

axios.get(url)
   .then((response) =>{
       console.log(response)
   })
   .catch(function (error) {
    console.log(error);
  })
  

提前谢谢

1 个答案:

答案 0 :(得分:1)

您使用了没有任何方案的URL,这就是为什么axios在您的本地主机上将该URL视为127.0.0.1:80的原因。只需在网址之前添加 http:// https://

const axios = require('axios')
const url = 'https://api.openweathermap.org/data/2.5/weatherq=London,uk&appid=4dd23b28fb57078c0d5ec9c653e203b2'

axios.get(url)
 .then((response) =>{
   console.log(response)
})
 .catch(function (error) {
   console.log(error);
})