我按照这个页面一步一步地 微博在用户页面上的评论(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