17
12

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.

RailsでのURLの取得

Posted at

#はじめに
エンジニア1年生です。
日々の学びのメモとしてコツコツと記事を書こうと思っています。
今回は第一弾としてRailsでのURLの取得について書いていきます。

#RailsでのURLの取得
URLの取得にはリクエストを送ってきたユーザのヘッダー情報や環境変数を取得するrequestを使用します。

例としてリクエスト元をhttps://hoge.com/show現在地をhttps://hoge.com/newとします。

####1,現在のURLを取得したい

controller.rb
#newアクションに記述
@url = request.url

@url = https://hoge.com/new となります。

####2,リクエスト元(遷移元)のURLを取得したい

controller.rb
#newアクションに記述
@url = request.referer

@url = https://hoge.com/show となります。

以上です。

17
12
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
17
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?