javascript 在Nodejs中使用Express的Axios HTTP请求。 5Way HTTP-RequestsLIST:https://www.twilio.com/blog/2017/0

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 在Nodejs中使用Express的Axios HTTP请求。 5Way HTTP-RequestsLIST:https://www.twilio.com/blog/2017/0相关的知识,希望对你有一定的参考价值。

const express = require('express')
const app = express()
const axios = require('axios');

app.get('/', (req, res) => {
  axios.get('http://zipcloud.ibsnet.co.jp/api/search?zipcode=2500011')
    .then(response => {
      console.log("res" + response);
      /** // Object loop
       *
        const results = response.data.results[0]
        let ar = [];
        for (const key in results) {
          if (results.hasOwnProperty(key)) {
            ar.push(results[key])
          }
        }
        res.send(ar)
      */
     res.send(response.data.results[0])
      /* //.then(response.hoge) LISTs
        console.log(response.data);
        console.log(response.status);
        console.log(response.statusText);
        console.log(response.headers);
        console.log(response.config);
        // other..
        // https://github.com/axios/axios#response-schema
      */  
    })
    .catch(error => {
      console.log(error);
    });
}) 

app.listen(3000, () => console.log('Example app listening on port 3000!'))

以上是关于javascript 在Nodejs中使用Express的Axios HTTP请求。 5Way HTTP-RequestsLIST:https://www.twilio.com/blog/2017/0的主要内容,如果未能解决你的问题,请参考以下文章

在 javascript/nodejs 中使用 Luxon 从工作日获取日期

是否可以在javascript项目中使用Nodejs

在 NodeJS / JavaScript 中使用 iOS Swift Date()

javascript 中函数eval()

什么...在nodejs / javaScript中

javascript 在Nodejs中登录到终端时,调试可以轻松使用颜色