0
我正在嘗試創建一個表單,爲具有一個billing_information
的模型用戶創建新記錄。 Billing_information
有一個屬性account_name
,我想包含在表單中。我嘗試使用委託方法,但它不工作。它產生: -rails_admin如何在創建表單中包含子屬性
error: unknown attribute 'billing_information_account_name' for User.
class User < ActiveRecord::Base
accepts_nested_attributes_for :billing_information
has_one :billing_information, inverse_of: :user
delegate :account_name, to: :billing_information, allow_nil: true
rails_admin do
create do
field :name
field :email
field :billing_information_account_name do
def value
bindings[:object].account_name
end
end
end
end
end
有沒有人有一個更好的解決方案?謝謝。