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?

Ruby on Railsでコントローラー名と紐づいているもの

Posted at

コントローラー名をBooks→Testに変える場合

routes.rbにて名称変更

/kakeibo/config/routes.rbを下記の通り変更する。

get "/books", to: "books#index"

get "/books", to: "test#index"

コントローラーファイルの名前を変更

/kakeibo/app/controllers/books_controller.rb

/kakeibo/app/controllers/test_controller.rb

ファイル内のコントローラー名を変更する

/kakeibo/app/controllers/books_controller.rbを下記の通り変更する。

class BooksController < ApplicationController

class TestController < ApplicationController

viewsのフォルダ名を変更

/kakeibo/app/views/books

/kakeibo/app/views/test

全部変更した後にサーバーを立ち上げなおす

$ rails s

参考

下記サイトにて変更に必要な作業が書いてある。

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?