试图让 Select2 删除一个项目并找出它为什么在更新时不断添加新标签。
使用 Select2.JS V3.5
当我尝试删除一个项目时,它不会删除它。它还最终将标签列表组合到一个新的 STRING 中,从而创建一个新的标签。即如果我有 ["play", "doe"] 并且我更新了另一个字段,它会创建一个名为 "play doe" 的新标签,从而导致 ["play", "doe", "play doe"]。每次我更新时都会继续。
这是我的 JS 代码
// Generated by CoffeeScript 1.9.3
$(document).ready(function() {
$('.tagselect').each(function() {
var placeholder, saved, url;
placeholder = $(this).data('placeholder');
url = $(this).data('url');
saved = $(this).data('saved');
$(this).select2({
tags: true,
placeholder: placeholder,
minimumInputLength: 3,
allowClear: true,
multiple: true,
debug: true,
initSelection: function(element, callback) {
saved && callback(saved);
},
ajax: {
url: url,
dataType: 'json',
data: function(term) {
return {
q: term
};
},
results: function(data) {
return {
results: data
};
}
},
createSearchChoice: function(term, data) {
if ($(data).filter((function() {
return this.text.localeCompare(term) === 0;
})).length === 0) {
return {
id: term,
text: term
};
}
}
});
});
});