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】URI.escapeが使えない

Posted at

はじめに

Railsのアップデート中にURI.escapeを使用している箇所でエラーが出たので、その対応をまとめます。

問題

コード

URI.escape(str)

エラー文

NoMethodError (undefined method `espace' for URI:Module)

解決方法

Ruby3.0からURI.escapeは削除されました。また、URI.unescapeも削除されています。
代わりに、CGI.escapeやURI.encode_www_formなどを使用します。

参考

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?