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

[Rails]root to:を使ってroot_pathアクションで遷移先を指定できる

Last updated at Posted at 2021-09-04

##初めに

####なぜこの記事を書きたかったのか
・自分の知識を言語化させ記憶に定着させたいから。

####環境
・Macbook Air (Retina, 13-inch,2019)
・プロセッサ 1.6GHz デュアルコアIntel Core i5
・メモリ 8GB 2133 Mhz LPDDR3
・MacOS Big Sur バージョン 11.5.2

##root to:を使ってroot_pathアクションで遷移先を指定できる
####1)viewでroutes.rbに信号を送るボタンを作る

<%= link_to "ボタンの名前”, root_path>

rootpath sample.png

####2)routes.rbにその信号のアクションを設定する

root to: 'コントローラ名#アクション'

root to sample.png

####3)oooo.controller.rbに指定したアクションの命令式を設定
*下記の場合、命令式は未記入だがindexへ遷移してくださいとなる。

def index
(命令式)
end

rootpath action sample.png

##最後に
・基礎中の基礎だけどこれでページ遷移したいときは、だいたいこの流れなので大事だと思う!
・読んでくれてありがとう!

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?