我正在尝试制作一个以 3 个选择下拉菜单开头的表单。很标准——
The selection of drop down 1 populates the options in drop down 2
然后,
The selection of drop down 2 populates the options in drop down 3
我在sled
这里遵循了对一个类似问题的回答,https ://stackoverflow.com/a/6864321/766817但我不知道(使用他的示例)如何将第三个元素添加到组合中。这是我到目前为止...
_form.html.erb
<%= select_tag :first_select,
("<option>Product Grade...</option>" + options_from_collection_for_select(@product_grades, "id", "product_grade")).html_safe,
:'data-remote' => 'true',
:'data-url' => url_for(:controller => 'product_grades', :action => 'getdata'),
:'data-type' => 'json'
%>
<%= select_tag :second_select,
:'data-remote' => 'true',
:'data-url' => url_for(:controller => 'vendors', :action => 'getdata'),
:'data-type' => 'json'
%>
<%= select_tag :third_select %>
应用程序.js
$('#first_select').live('ajax:success', function(evt, data, status, xhr) {
var selectbox2 = $('#second_select');
selectbox2.empty();
$.each(data, function(index, value) {
var opt = $('<option/>');
opt.attr('value', value[0]);
opt.text(value[1]);
opt.appendTo(selectbox2);
});
});
$('#second_select').live('ajax:success', function(evt, data, status, xhr) {
var selectbox3 = $('#third_select');
selectbox3.empty();
$.each(data, function(index, value) {
var opt = $('<option/>');
opt.attr('value', value[0]);
opt.text(value[1]);
opt.appendTo(selectbox3);
});
});
最后,我getdata
在 theProductGradesController
和 theVendorsController
产品等级控制器
def getdata
@data_from_select1 = params[:first_select]
@data_for_select2 = Vendor.where(:product_grade_id => @data_from_select1).all
render :json => @data_for_select2.map{|c| [c.id, c.vendor_name]}
end
供应商控制器
def getdata
@data_from_select2 = params[:second_select]
@data_for_select3 = ItemCode.where(:vendor_id => @data_from_select2).all
render :json => @data_for_select3.map{|a| [a.id, a.item_code]}
end
目前,前两个步骤有效,但是第三步会生成一个选择框,但当您从前两个步骤中选择一个选项时,不会填充任何数据。
我对 jQuery AJAX 查询等很陌生,所以我确定我在那里做错了什么,但是有什么想法吗?谢谢!!