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 on Rails】Rails理念に沿ったビューの共通化

Last updated at Posted at 2024-05-16

共通させるビューのファイル名には、アンダースコア[ _ ]から記述化させるのがルールです。

ファイル名:例
_common.html.rb

■方法

  1. 共通するコードを[ _ ]ファイルに記述
  2. コピー元のコードを削除
  3. 共通化させたいファイルに以下のコード記述
共通させるビューのファイル
render partial: 'アンダースコアを取り除いたファイル名'

※アンダースコアは書かないルール

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?