ruby-on-rails 如何限制简单表单关联仅显示当前用户的值

f8rj6qna  于 2023-01-14  发布在  Ruby
关注(0)|答案(1)|浏览(123)

我正在用Ruby on Rails 7构建一个费用跟踪器。我使用pundit gem授权每个用户只能访问他们自己的数据。但是,当我尝试添加一个新交易时,它仍然显示所有银行账户,而不仅仅是当前用户的账户。
我是这样定义模型之间的关系的:

class User < ApplicationRecord
  has_many :accounts, dependent: :destroy
  has_many :categories, dependent: :destroy
  has_many :transactions, through: :accounts
end

class Account < ApplicationRecord
  belongs_to :user
  has_many :transactions, dependent: :destroy

  enum :acc_type, [:Checking, :Savings]
  enum :bank_name, [:Westpac]
end

class Transaction < ApplicationRecord
  belongs_to :account
  belongs_to :category

  enum :tx_type, [:Debit, :Credit]

  scope :ordered, -> { order(date: :desc) }
end

这是交易#new的简单形式:

<%= simple_form_for transaction do |f| %>
  <% if transaction.errors.any? %>
    <div class="error-message alert alert-danger alert-dismissible fade show">
      <%= transaction.errors.full_messages.to_sentence.capitalize %>
    </div>
  <% end %>
  <%= f.input :date, as: :date, html5: true %>
  <%= f.input :description %>
  <%= f.input :tx_type, collection: Transaction.tx_types.keys, as: :radio_buttons, item_wrapper_class: 'form-check-inline' %>
  <%= f.input :tx_amount %>
  <%= f.association :account, label_method: :acc_name, value_method: :id, prompt: "Choose account" %>
  <%= f.association :category, prompt: "Choose category" %>
  <%= f.input :notes %>
  <%= f.button :submit, class: "mt-3 btn btn-primary" %>
<% end %>

我只想弄清楚如何以正确的方式声明这个关联,以获得current_user的帐户列表。

<%= f.association :account, label_method: :acc_name, value_method: :id, prompt: "Choose account" %>

因为,这个给了我所有的帐户,而不仅仅是当前用户添加的帐户。
这是GitHub存储库,如果它有帮助的话:https://github.com/jkvithanage/finance-manager

kt06eoxx

kt06eoxx1#

指定文档中给出的集合
https://github.com/heartcombo/simple_form#associations

f.association :account, collection: current_user.accounts, prompt: "Choose a Account"

相关问题