1
我正在使用高級搜索搜索,我希望當用戶選擇搜索屬性時,他/她可以從下拉列表中選擇一個值/值框中的預填充列表。就像選擇框一樣。Rails +搜索引擎。如何根據選定的屬性自定義值域,包括搜索中的關聯
我該怎麼做?
這裏是我的_condition_fields.html.erb代碼:
<div class="field">
<%= f.attribute_fields do |a| %>
<%= a.attribute_select associations: [:category] %>
<% end %>
<%= f.predicate_select %>
<%= f.value_fields do |v| %>
<%= v.text_field :value %>
<% end %>
#something like this here
<%= f.select, options_for_select(SELECTED_ATTRIBUTES_ALL_VALUES), include_blank: true %>
</div>
我得到了同樣的問題。你知道嗎? –