select2 多项选择在 form.submit 上清除(ruby 在 rails 上)
select2 multiple selections cleared on form.submit (ruby on rails)
我正在使用 select2 进行表单提交。我的 html 看起来像这样:
<%= form.select "page_request_ids", [], {}, id: "page_request_ids", multiple: true, style: "width:506px;" %>
javascript:
jQuery('select#page_request_ids').select2({
placeholder: "Start typing paths...",
allowClear: true,
ajax: {
url: "/page_requests/multiautocomplete",
dataType: 'json',
type: "GET",
data: function(params) {
return {
option: params.term,
};
},
processResults: function(data, params) {
return {
results: jQuery.map(data, function(item) {
return {
text: item[0] + " (" + item[1] + ")",
request: item[1],
id: item[2]
}
})
};
},
cache: true
}
});
提交表单后,值会清除表单字段。我试图确保这些值在提交表单后出现(提交表单时加载相同的表单)。
任何帮助都会很棒。
您需要在提交后 set
page_request_ids
到 select tag
。
<%= form.select "page_request_ids", [], {}, id: "page_request_ids", multiple: true, style: "width:506px;" %>
此处您需要传递 page_request_ids
集合而不是 blank Array
。
我正在使用 select2 进行表单提交。我的 html 看起来像这样:
<%= form.select "page_request_ids", [], {}, id: "page_request_ids", multiple: true, style: "width:506px;" %>
javascript:
jQuery('select#page_request_ids').select2({
placeholder: "Start typing paths...",
allowClear: true,
ajax: {
url: "/page_requests/multiautocomplete",
dataType: 'json',
type: "GET",
data: function(params) {
return {
option: params.term,
};
},
processResults: function(data, params) {
return {
results: jQuery.map(data, function(item) {
return {
text: item[0] + " (" + item[1] + ")",
request: item[1],
id: item[2]
}
})
};
},
cache: true
}
});
提交表单后,值会清除表单字段。我试图确保这些值在提交表单后出现(提交表单时加载相同的表单)。
任何帮助都会很棒。
您需要在提交后 set
page_request_ids
到 select tag
。
<%= form.select "page_request_ids", [], {}, id: "page_request_ids", multiple: true, style: "width:506px;" %>
此处您需要传递 page_request_ids
集合而不是 blank Array
。