Axios API

Axios API リファレンス

関連する設定を axios に渡すことでリクエストを行うことができます。

axios(config)
// POST リクエストを送信する
axios({
  method: 'post',
  url: '/user/12345',
  data: {
    firstName: 'Fred',
    lastName: 'Flintstone'
  }
});
// Node.js でのリモート画像を GET リクエスト
axios({
  method: 'get',
  url: 'http://bit.ly/2mTM3nY',
  responseType: 'stream'
})
  .then(function (response) {
    response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
  });
axios(url[, config])
// GET リクエストの送信(デフォルト メソッド)
axios('/user/12345');

リクエスト メソッドのエイリアス

使いやすいように、サポートされているすべてのリクエスト メソッドにエイリアスが提供されています。

axios.request(config)
axios.get(url[, config])
axios.delete(url[, config])
axios.head(url[, config])
axios.options(url[, config])
axios.post(url[, data[, config]])
axios.put(url[, data[, config]])
axios.patch(url[, data[, config]])

エイリアス メソッドを使用する場合、url method、および data プロパティを設定で指定する必要はありません。