参数缺失或值为空:

时间:2019-10-27 01:38:48

标签: ruby-on-rails

我需要在对new_item_path的get请求中包括一个选择列表。我遇到的问题是它没有发送预期的资源对象,在这种情况下::item返回控制器,因此item_params没有item

参数缺失或值为空:item

<%= form_tag new_item_path(@item), :method => :get do %>

      <div class="field">
            <%= select_tag(:item_type, options_for_select(Item::ITEM_TYPES)) %>
      </div>

      <div class="actions">
        <%= submit_tag "New item" %>
      </div>

<% end %>

1 个答案:

答案 0 :(得分:0)

将select_tag中的代码更改为 ndarray