我使用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
。