select2 simple_form并使用远程数据初始选择

时间:2017-04-28 08:49:16

标签: ruby-on-rails jquery-select2 simple-form

我已经在我的应用程序中使用了simple_form和select2,到目前为止它的工作正常。

我有这段代码:

  <%= f.association :location_from,
    collection: @model.locations,
    label_method: :select_label,
    value_method: :id,
    include_blank: false,
    label: 'From Location',
    class: 'select form-control'
  %>

和我的javascript:

$('#pipeline_segment_location_from_id').select2({
  placeholder: 'Select a From Location...',
  allowClear: false,
  multiple: false,
  ajax: {
    url: '/locations/select.json',
    dataType: 'json',
    data: function(params) {
      return {
        'q[loc_cont]': params.term,
        page: params.page
      };
    },
    processResults: function(data) {
      return {
        results: $.map(data, function(item) {
          return {
            text: item.text,
            id: item.id
          };
        })
      };
    }
  }
});

下拉按预期工作(即ajax等)。记录保存等问题。当我再次编辑记录时,选择为空白且相关记录未加载到选择中。我想我错过了一些基本的东西,但我似乎无法弄明白。

更新

我很晚才开始研究这个问题。两个问题 - 我正在传递@ model.locations,它是从另一个不相关的选项中复制的,它预先加载了错误的选项。我需要做的就是按照下面接受的答案添加selected:

  <%= f.association :location_from,
    selected: @model.location_from_id,
    label_method: :select_label,
    value_method: :id,
    include_blank: false,
    label: 'From Location',
    class: 'select form-control'
  %>

1 个答案:

答案 0 :(得分:1)

您可以传递额外的参数selected: some_ids。喜欢

= f.association :location_from, collection: @model.locations, selected: @record.map(&:location_id), ....