“Axios Response.json” Kode Jawaban

Axios mendapatkan metode

const axios = require('axios');

// Make a request for a user with a given ID
axios.get('/user?ID=12345')
  .then(function (response) {
    // handle success
    console.log(response);
  })
  .catch(function (error) {
    // handle error
    console.log(error);
  })
  .then(function () {
    // always executed
  });
Friendly Fly

Axios Response.json

const axios = require('axios');

const res = await axios.get('https://httpbin.org/get', { params: { answer: 42 } });

res.constructor.name; // 'Object', means `res` is a POJO

// `res.data` contains the parsed response body
res.data; // { args: { answer: 42 }, ... }
res.data instanceof Object; // true
Modern Mandrill

Jawaban yang mirip dengan “Axios Response.json”

Pertanyaan yang mirip dengan “Axios Response.json”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya