我目前正在构建一个应用程序,人们在其中添加一个项目,然后向项目添加更新。我想对这些更新进行编号,例如:
更新 1、更新 2 等...
有一个列表视图,也有一个单独的视图,它会在顶部显示更新编号。
我找到了在循环记录以创建列表时使用的各种索引计数解决方案,但我不知道如何在单个视图上显示更新编号。
我什至应该将更新号与数据库中的记录一起存储吗?
我的架构的相关部分:
create_table "projects", :force => true do |t|
t.string "title"
t.string "image"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.integer "user_id"
end
add_index "projects", ["user_id"], :name => "index_projects_on_user_id"
create_table "updates", :force => true do |t|
t.string "title"
t.text "text", :limit => 255
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.integer "project_id"
end
add_index "updates", ["project_id"], :name => "index_updates_on_project_id"