初めまして、Railsを初めて1ヶ月未満の超初心者です。
動画や本を見ながら初歩の初歩のQandAを作っているのですが
何度もこちらで引っかかってしまいます。
①エラー画面
NameError in Questions#index
Showing /Users/nakamayousuke/Desktop/qanda/app/views/questions/index.html.slim where line #15 raised:
undefined local variable or method `question' for #<#Class:0x00007fcca9faeb78:0x00007fccaaae9e70>
Did you mean? @questions
- @questions.each do|question|
tr
td = question.id
td = question.title
td link_to '[Edit]'
td link_to '[Delete]'
と td = question.id の部分がエラーが出ております。
questionは引数なのにメソッド?変数?のエラー、と何度も本や動画を見ましたがわからないママです。
② app/views/questions/index.html.slim
h1 Questions
.row
.col-md-12
table.table table-striped
thead.thead-light
tr
th ID
th Tille
th Menu
tbody
- @questions.each do|question|
tr
td = question.id
td = question.title
td [Edit][Delete]
なお、本は現場で使えるRuby on Rails5速習実践ガイドです。
申し訳ございませんがよろしくお願い致します。
あなたの回答
tips
プレビュー