1
0

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 1 year has passed since last update.

クエリパラメータ

Last updated at Posted at 2022-02-24

クエリパラメータとは

クエリパラメータとは、URLの末尾で疑問符「?」に続けてキーと値のペアを記述したもの。

.../edit?email=foo%40example.com

上記の場合、?email=foo%40example.comがクエリパラメータ。

? からクエリパラメータを示して、emailがキー(パラメータ)としてfoo%40example.comを指定している。

?キー(パラメータ)=キー(パラメータ)の値

%40はURLエンコード

値の表記に使用できない文字を含めたい場合は、「URLエンコード」あるいは「パーセントエンコーディング」と呼ばれる方式で安全な文字列に変換。
これは「エスケープ」と呼ばれる手法で、通常URLでは扱えない文字を扱えるようにする。


@はURLエンコードだと%40となる。


URLエンコード変換ツール

URLのクエリパラメータではキーと値ペアのを複数使うこともでき、その場合は&でつなぐ。

.../edit?name=Foo%20Bar&email=foo%40example.com
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?