【发布时间】:2016-09-24 06:01:21
【问题描述】:
在我的应用中,用户可以拥有许多公司,反之亦然。在 Accounts 表中存储用户的 ID 和其公司的 ID。 我想找到属于公司的所有用户,属于 current_user。 假设 current_user 就像这些公司的主用户(不是管理员,因为那将是系统管理员)。 我该怎么做呢?我的猜测是用 Arel 来做,但是它在模型、控制器、视图中应该是什么样子?非常感谢您的帮助。我在 Rails 5 上。
models/user.rb
class User < ApplicationRecord
has_many :accounts, dependent: :destroy
has_many :companies, through: :accounts
models/account.rb
class Account < ApplicationRecord
belongs_to :company
belongs_to :user
accepts_nested_attributes_for :company, :user
models/company.rb
class Company < ApplicationRecord
has_many :accounts, dependent: :destroy
has_many :users, through: :accounts
accepts_nested_attributes_for :accounts, :users
我的 schema.rb 看起来像这样:
create_table "accounts", force: :cascade do |t|
t.integer "company_id"
t.integer "user_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["company_id"], name: "index_accounts_on_company_id"
t.index ["user_id"], name: "index_accounts_on_user_id"
end
create_table "companies", force: :cascade do |t|
t.string "name"
t.string "legal_name"
t.string "reg_number"
t.string "address"
t.string "bank_acc"
t.string "description"
t.string "website"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "role", default: 0
t.integer "currency", default: 0
end
create_table "users", force: :cascade do |t|
t.string "name"
t.string "email"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "password_digest"
t.string "remember_digest"
t.boolean "admin", default: false
t.index ["email"], name: "index_users_on_email", unique: true
end
【问题讨论】:
标签: ruby-on-rails ruby arel