このページを段階的にたどり ました ユーザーページ(Ruby on Rails)に関するマイクロポストのコメント
次に、ここでform_for 、未定義のメソッド名を取得しているというエラーを調べました
「rails generate migration add_comment_content_to_micropost comment_content:text」を実行してから、「rake db:migrate」を実行しました
ただし、未定義のメソッド「comment_content」エラーがまだ発生しています
NoMethodError in Users#show
Showing C:/app/views/shared/_comment_form.html.erb where line #4 raised:
undefined method `comment_content' for #<Comment:0x4fe56b8>
列が schema.db からのものであるセクションは次のとおりです
create_table "microposts", :force => true do |t|
t.string "content"
t.integer "user_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.text "commentcontent"
t.text "comment_content"
end