1

belongs_to リレーションを使用すると、次のエラーが発生します

Admin::PropertyDetailsController#index の NoMethodError #AdminUser:0x00000005e59a70 の未定義メソッド `property_types'

問題の解決にご協力ください。

Ruby 2.0.0p247 および Rails 4 で ActiveAdmin 0.60 を使用しています。

Gemfile: gem 'activeadmin'、github: 'gregbell/active_admin'、ブランチ: 'rails4'

ActiveAdmin.register PropertyDetail do

belongs_to :property_type

menu :label => "Latest Properties in the Town"

controller do
    def permitted_params
      params.permit(:property_detail => [:title ,:description, :image_url, :price,  :land_area, :land_unit, :contact_id, :property_type_id, :purpose_id])
    end

end

index do
    column :title
    column :description
    column :image_url
    column :price, :sortable => :price do |property_detail|
    div :class => "price" do
        number_to_currency property_detail.price
    end
end
end
form :partial => "form"

end

ActiveAdmin.register PropertyType do

end
4

1 に答える 1