データベースのテーブルの中身を指定して取得。
テーブル名:lists
カラム名:title
def index
@lists = List.find_by(title:"リスト")
@lists_number = List.find_by(number:46)
end
あとはviewに記述すれば表示されます。
<%= @lists.title %>
<%= @lists_number.title %>
Go to list of users who liked
More than 3 years have passed since last update.
データベースのテーブルの中身を指定して取得。
テーブル名:lists
カラム名:title
def index
@lists = List.find_by(title:"リスト")
@lists_number = List.find_by(number:46)
end
あとはviewに記述すれば表示されます。
<%= @lists.title %>
<%= @lists_number.title %>
Register as a new user and use Qiita more conveniently
Go to list of users who liked