11
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

React axiosを使ってPOSTメソッドにヘッダーをつけてリクエストする

Posted at

axios

ざっくり説明するとnodeからHTTPリクエストを送るためのライブラリです。
https://www.npmjs.com/package/axios

詳しい説明や使い方は、下記リンクを参照ください。
https://qiita.com/reoisym/items/245e3cdedc194a9f4062

今回は、axiosのなかでも、POSTメソッドにヘッダーをつけてリクエストする方法を紹介します。

コード

sample.tsx
import axios from "axios";


export function HttpAccess(): any {
  //リクエストに付加するヘッダーの定義
  const headers = {
            'Content-Type': 'application/json',
            'any-header': '付加したいヘッダー'
  }

  axios.post(url, data, {headers: headers});

}

上記の方法で、POSTメソッドにヘッダーをつけてリクエストすることができます。

参考になれば幸いです!

11
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?