15
8

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 5 years have passed since last update.

axiosでクエリパラメータのシリアライズのフォーマットをカスタマイズする

Last updated at Posted at 2019-08-01

axiosではparamsSerializerオプションを設定することで
クエリパラメータのシリアライズのフォーマットをカスタマイズすることができます。

デフォルト設定では配列のクエリパラメータは下記のようになります。

//array=[1,2]

array[]=1&array[]=2

このクエリパラメータのシリアライズ処理を以下のようにカスタマイズしてみます。

//array=[1,2]

array=1&array=2

カスタマイズ

クエリパラメータの変換に使用させていただくライブラリはこちらです。
https://github.com/ljharb/qs

import qs from "qs";

//クエリパラメータのパーサ
const paramsSerializer = params =>
  qs.stringify(params, { arrayFormat: "repeat" });

//カスタマイズしたaxiosのインスタンスを生成します
const config = {
    paramsSerializer
}
const _axios = axios.create(config);

カスタマイズしたaxiosのインスタンスを使用すると
配列がarray=1&array=2のようにシリアライズされます。
他にも色々なパターンにカスタマイズできるみたいですね。

15
8
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
15
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?