Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个模型“事件”,它有关联
has_one :movie
和时间栏。电影模型有很多字段:名称、评级、演员和其他我想创建事件表,在这个表中我希望列可以按电影模型的字段排序。你能建议这样做的方法吗?提前致谢
尝试这样的事情:
Event.joins(:movie).order("movies.name")