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

fetchでクエリパラメータを渡す方法

Last updated at Posted at 2020-07-29

ajaxをfetch apiで書き変えた時に、getリクエストにクエリパラメータをつける方法がわからず詰まってしまったのでメモ。

fetchにはgetリクエストにクエリパラメータをつける方法が用意されていないようです。
この点、ajaxメソッドはわかりやすくクエリパラメータを付与できたのはメリットだったと思います。

ただ、以下の方法でクエリパラメータを付与してfetchを書くことができました。
悩んでいる方は是非参考にしてみてください。またもっとい書き方があれば、是非教えてください。

    const params = { // 渡したいパラメータをJSON形式で書く
      a: xxxx,
      b: xxxx,
      c: xxxx,
    };

    const query_params = new URLSearchParams(params); 
    fetch('${リクエストを送りたいURL}?' + query_params)
      .then(response => response.json())
      .then(response => {
          // 実行したい処理を記述
      });
25
8
1

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
25
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?