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

【Ruby】クエリパラメータに`+`記号を使いたい

Posted at

問題

RailsのアプリのAPIを実行するときのクエリパラメータに記号の+を使いたい時、そのまま+記号を使うとスペースとして認識される。

解決方法

+記号の部分を%2Bに変更する。

# 変更前
localhost:3000/api?key=value+sample

# 変更後
localhost:3000/api?key=value%2Bsample

参考

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