我看到这种模式很多:
module Article::score def self.included(base) base.send :extend,ClassMethods base.send :include,InstanceMethods end module ClassMethods ... end module InstanceMethods ... end end
然后在文章模型中,我看到了这一点
class Article include Article::score ... end
所以我的猜测是“base”可能是指文章类,我们只是包含实例方法并扩展类方法.但有人可以解释片段“self.included(base)”并概述那里发生了什么?
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。