我有一个 < code> record < /code > 模型, 为了编辑这个模型, 您必须登录为 < code> Admin code > 实例。 我希望有一个名为 < code> last_ modifed_ by code > 的栏目, 该栏目指向上次修改记录的人。 在数据库中, 我想在 < code> records 表格中添加一个包含管理者s < code> < id > < /code > 的栏目是件好事; 但是, 我唯一知道如何这样做的方法是关联关系。 这两种模型之间没有关联, 因而关联不会有很大意义 。 还有什么其他方法我可以不使用关联来完成这项任务吗? 任何建议都会受到欢迎!
collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...