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.
我想为模型创建多重继承。
为了做到这一点,我尝试了类似的方法:
class User < ActiveRecord::Base, Devise::SessionsController
正确的方法是什么?我认为我的语法不正确。
Ruby 不支持多重继承。要在模型之间共享功能,您需要使用 mixin。查看这篇文章,尤其是关于 mixins 的部分。