在select2中使用AJAX进行标记

时间:2013-01-09 06:50:25

标签: javascript jquery jquery-select2

我正在使用select2

进行标记

我对select2:

有这些要求
  1. 我需要使用select2 ajax
  2. 搜索一些标签
  3. 另外我需要在select2中使用“tags”,允许不在列表中的值(Ajax结果)。
  4. 这两种方案都是独立运作的。但加在一起的aJax值只是填充。如果我们输入不在列表中的任何其他值,则表示“找不到匹配项”

    我的场景如果用户输入列表中没有的任何新值,请允许他们自己制作标签。

    任何使这项工作的方法?

4 个答案:

答案 0 :(得分:97)

Select2具有“createSearchChoice”功能:

  

从用户的搜索词创建一个新的可选择的选项。允许   通过查询功能创建不可用的选项。有用的时候   用户可以动态创建选项,例如“标记”用例。

您可以通过以下方式实现您的目标:

createSearchChoice:function(term, data) {
  if ($(data).filter(function() {
    return this.text.localeCompare(term)===0;
  }).length===0) {
    return {id:term, text:term};
  }
},
multiple: true

这是一个更完整的答案,它将JSON结果返回给ajax搜索,并允许从该术语创建标记,如果该术语没有返回结果:

$(".select2").select2({
  tags: true,
  tokenSeparators: [",", " "],
  createSearchChoice: function(term, data) {
    if ($(data).filter(function() {
      return this.text.localeCompare(term) === 0;
    }).length === 0) {
      return {
        id: term,
        text: term
      };
    }
  },
  multiple: true,
  ajax: {
    url: '/path/to/results.json',
    dataType: "json",
    data: function(term, page) {
      return {
        q: term
      };
    },
    results: function(data, page) {
      return {
        results: data
      };
    }
  }
});

答案 1 :(得分:34)

选择v4

http://jsfiddle.net/8qL47c1x/2/

HTML:

<select multiple="multiple" class="form-control" id="tags" style="width: 400px;">
    <option value="tag1">tag1</option>
    <option value="tag2">tag2</option>
</select>

JavaScript的:

$('#tags').select2({
    tags: true,
    tokenSeparators: [','],
    ajax: {
        url: 'https://api.myjson.com/bins/444cr',
        dataType: 'json',
        processResults: function(data) {
          return {
            results: data
          }
        }
    },

    // Some nice improvements:

    // max tags is 3
    maximumSelectionLength: 3,

    // add "(new tag)" for new tags
    createTag: function (params) {
      var term = $.trim(params.term);

      if (term === '') {
        return null;
      }

      return {
        id: term,
        text: term + ' (new tag)'
      };
    },
});

选择v3.5.2

有一些改进的例子:

http://jsfiddle.net/X6V2s/66/

HTML:

<input type="hidden" id="tags" value="tag1,tag2" style="width: 400px;">

JS:

$('#tags').select2({
    tags: true,
    tokenSeparators: [','],
    createSearchChoice: function (term) {
        return {
            id: $.trim(term),
            text: $.trim(term) + ' (new tag)'
        };
    },
    ajax: {
        url: 'https://api.myjson.com/bins/444cr',
        dataType: 'json',
        data: function(term, page) {
            return {
                q: term
            };
        },
        results: function(data, page) {
            return {
                results: data
            };
        }
    },

    // Take default tags from the input value
    initSelection: function (element, callback) {
        var data = [];

        function splitVal(string, separator) {
            var val, i, l;
            if (string === null || string.length < 1) return [];
            val = string.split(separator);
            for (i = 0, l = val.length; i < l; i = i + 1) val[i] = $.trim(val[i]);
            return val;
        }

        $(splitVal(element.val(), ",")).each(function () {
            data.push({
                id: this,
                text: this
            });
        });

        callback(data);
    },

    // Some nice improvements:

    // max tags is 3
    maximumSelectionSize: 3,

    // override message for max tags
    formatSelectionTooBig: function (limit) {
        return "Max tags is only " + limit;
    }
});

JSON:

[
  {
    "id": "tag1",
    "text": "tag1"
  },
  {
    "id": "tag2",
    "text": "tag2"
  },
  {
    "id": "tag3",
    "text": "tag3"
  },
  {
    "id": "tag4",
    "text": "tag4"
  }
]

更新2015-01-22:

修复jsfiddle:http://jsfiddle.net/X6V2s/66/

更新2015-09-09:

使用Select2 v4.0.0 +变得更容易。

选择v4.0.0

https://jsfiddle.net/59Lbxvyc/

HTML:

<select class="tags-select" multiple="multiple" style="width: 300px;">
  <option value="tag1" selected="selected">tag1</option>
  <option value="tag2" selected="selected">tag2</option>
</select>

JS:

$(".tags-select").select2({
  // enable tagging
  tags: true,

  // loading remote data
  // see https://select2.github.io/options.html#ajax
  ajax: {
    url: "https://api.myjson.com/bins/444cr",
    processResults: function (data, page) {
      return {
        results: data
      };
    }
  }
});

答案 2 :(得分:5)

createSearchChoice : function (term) { return {id: term, text: term}; }

只需添加此选项

答案 3 :(得分:0)

您可以通过让ajax函数返回搜索词作为结果列表中的第一个结果来使其工作。然后,用户可以选择该结果作为标记。