4

在我的 Ruby on Rails 3.2.3 应用程序中,我有两个模型通过第三个模型通过 has_many through 关系连接:

class Organization < ActiveRecord::Base
  attr_accessible :description, :name
  has_many :roles, dependent: :destroy
  has_many :members, through: :roles, source: :user
end

class Role < ActiveRecord::Base
  attr_accessible :title
  belongs_to :organization
  belongs_to :user
end

class User < ActiveRecord::Base
  attr_accessible :email, :fullname
  has_many :roles, dependent: :destroy
  has_many :organizations, through: :roles
end

我想将 aUserOrganization. 但是,需要指定title上的属性Role。为了强制执行这一点,我在 MySQL中将该title字段设置为。NOT NULL

以下是 Rails 控制台上发生的情况:

>> o = Organization.first
>> u = User.first
>> o.members << u
   (0.1ms)  BEGIN
  SQL (0.4ms)  INSERT INTO `roles` (`created_at`, `organization_id`, `title`, `updated_at`, `user_id`) VALUES ('2012-11-22 08:37:23', 1, NULL, '2012-11-22 08:37:23', 1)
Mysql2::Error: Column 'title' cannot be null: INSERT INTO `roles` (`created_at`, `organization_id`, `title`, `updated_at`, `user_id`) VALUES ('2012-11-22 08:37:23', 1, NULL, '2012-11-22 08:37:23', 1)
   (0.1ms)  ROLLBACK
ActiveRecord::StatementInvalid: Mysql2::Error: Column 'title' cannot be null: INSERT INTO `roles` (`created_at`, `organization_id`, `title`, `updated_at`, `user_id`) VALUES ('2012-11-22 08:37:23', 1, NULL, '2012-11-22 08:37:23', 1)
    from /path/...

我知道我可以Role直接创建一个实例。但是,在使用运算符时,在连接表上指定属性的更优雅的方法是什么<<

4

1 回答 1

0

我认为您正在尝试使用不属于其中的信息更新角色表。在您的情况下,角色名称应包含在组织或用户中,而不是您的联接表中。要么包含在父模型中,甚至更好,创建另一个连接表,以便您可以将角色与用户联系起来。

class role_users < ActiveRecord::Base
  attr_accessible :user_id, role_id
  belongs_to :user
  belongs_to :role
end

class Roles < ActiveRecord::Base
  attr_accessible :title, :foo, :bar
  has_many :role_users
  has_many :users, :through => :role_users
end    

class Users < ActiveRecord::Base
  attr_accessible :other, :foo, :bar
  has_many :role_users
  has_many :roles, :through => :role_users
end

然后像我们一样自己设置这些角色,并添加一个复选框或下拉菜单,以便用户可以选择。或者让用户自己输入信息。

于 2012-11-22T09:19:20.537 回答