Ruby   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ruby-on-rails – Rails:为什么“has_many …,… through => …”关联会导致“NameError:uninitialized constant …”大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
要表示组可以有多个用户,并且用户可以属于多个组,我设置以下关联:
class Group < ActiveRecord::Base
  has_many :users_groups
  has_many :users,:through => :users_groups
end

class User < ActiveRecord::Base
  has_many :users_groups
  has_many :groups,:through => :users_groups
end

class UsersGroups < ActiveRecord::Base
  belongs_to :user
  belongs_to :group
end

但是,当我输入:

Group.find(1).users

我得到:

NameError: uninitialized constant Group::UsersGroup

我究竟做错了什么 ?

解决方法

UserGroups类应该是UserGroup类. ActiveRecord模型是单数形式 – 表是复数形式.

大佬总结

以上是大佬教程为你收集整理的ruby-on-rails – Rails:为什么“has_many …,… through => …”关联会导致“NameError:uninitialized constant …”全部内容,希望文章能够帮你解决ruby-on-rails – Rails:为什么“has_many …,… through => …”关联会导致“NameError:uninitialized constant …”所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。