Rails4 - 显示订单表单中的项目

时间:2014-05-26 17:54:00

标签: ruby-on-rails simple-form select2-rails

我希望用户在订单表单中搜索项目表中的现有项目,它适用于客户但不适用于项目,它会出错:关联:项目未找到

模型

class Order < ActiveRecord::Base
    belongs_to :user
    belongs_to :client

    has_many :order_items
    has_many :items, :through => :order_items
end

class Item < ActiveRecord::Base
    has_many :order_items
    has_many :orders, :through => :order_items
end

class OrderItem < ActiveRecord::Base
    belongs_to :item
    belongs_to :order
end

移植

class CreateOrderItems < ActiveRecord::Migration
  def change
    create_table :order_items do |t|
        t.integer :item_id
        t.integer :order_id
      t.timestamps
    end
    add_index   :order_items, [:item_id, :order_id]
  end
end

查看

<%= simple_form_for(@order) do |f| %>
  <%= f.error_notification %>
    <%= f.association :client, collection: Client.all, label_method: :name, value_method: :id, prompt: "Choose a Client", input_html: { id: 'client-select2' } %>
    <%= f.association :item, collection: Item.all, label_method: :name, value_method: :id, prompt: "Choose an item", input_html: { id: 'client-select2' }  %>
<%= f.input :memo, label: 'Comments' %>
    <%= f.submit %>
<% end %>

控制器

 def new
    @order = Order.new
  end

  def create
    @order = Order.new(order_params)
    @order.user_id = current_user.id
    @order.status = TRUE
  end
  def order_params
    params.require(:order).permit(:code, :client_id, :user_id, :memo, :status,    items_attributes: [:id, :name, :price, :quantity, :status, :_destroy])
  end

答案

在表单中使用: 使用rails-select2 gem

<%= f.association :items, collection: Item.all, label_method: :name, value_method: :id, prompt: "Choose an item", input_html: { id: 'item-select2' } %>

或没有select2

<%= f.select :item_ids, Item.all.collect {|x| [x.name, x.id]}, {}, multiple: true %>

感谢JKen13579

1 个答案:

答案 0 :(得分:3)

您收到item但不是client错误的原因是因为订单中有一个client,但多个item与订单相关联。这是:item not found,因为你应该使用:items(注意复数)。

要允许order items进行多选,请将f.association item行替换为:

<%= f.select :item_ids, Item.all.collect {|x| [x.name, x.id]}, {}, multiple: true %>

然后在您的控制器中,请务必允许item_ids。此外,您不需要item_attributes,因为您没有使用accepted_nested_attributes_for :items

def order_params
  params.require(:order).permit(:code, :client_id, :user_id, :memo, :status, item_ids: [])
end

有关has_many :through多选的详情,请参阅this SO answer