LoginSignup
6
11

More than 3 years have passed since last update.

【Rails】Provideメソッド

Last updated at Posted at 2019-10-31

Provideメソッド

意味

供給する, 与える, 規定する

使用法

provideメソッドでパラメータを引き渡し

home.html.erb
<% provide(:title, "Home") %>

yieldメソッドで受け取る

application.html.erb
<title><%= yield(:title) %></title>
<!-- <title>Home</title> -->
6
11
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
6
11