“cara menggunakan Axios Get” Kode Jawaban

cara menggunakan Axios Get

const req = async () => {
  const response = await axios.get('https://dog.ceo/api/breeds/list/all')
  console.log(response)
}
req() // Calling this will make a get request and log the response.
Grotesque Gaur

AXIOS API Post Request

import qs from 'qs';
const data = { 'bar': 123 };
const options = {
  method: 'POST',
  headers: { 'content-type': 'application/x-www-form-urlencoded' },
  data: qs.stringify(data),
  url,
};
axios(options);
Amused Ant

Posting Axios

axios.post('https:sample-endpoint.com/user', {
    Name: 'Fred',
    Age: '23'
  })
  .then(function (response) {
    console.log(response);
  })
Kind Kitten

Jawaban yang mirip dengan “cara menggunakan Axios Get”

Pertanyaan yang mirip dengan “cara menggunakan Axios Get”

Lebih banyak jawaban terkait untuk “cara menggunakan Axios Get” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya