使用此控制器/视图之前,一切都运行良好且花花公子
def testo
@positions = Positions.find(:all)
@comments = Comment.find(:all)
respond_to do |format|
format.html # new.html.erb
end
end
查看代码:
.navcon.sprite-gear.sprite
.notifications.ajaxapp
.na_head NOTIFICATIONS
- @comments.each do |comment|
.na_item
.na_shell
我通过迁移在“评论”表中添加了一列,现在 @comments 变量返回未定义。有趣的是,这些代码都没有改变,数据库中的所有记录仍然存在,(我可以在控制台中使用与控制器中使用的相同命令来获得它们)
class AddColumn < ActiveRecord::Migration
def up
add_column('comments', 'position', 'text')
end
def down
end
end
可以在这里看到错误:http: //funjable.com/acc_error.html