使用引导程序3标签输入+提前输入组件时出现问题。
我使用以下代码初始化对象:
$(".tagsinput-airport[id=arrival]").tagsinput({
allowDuplicates: false,
freeInput: false,
itemValue: 'value',
itemText: 'display',
maxTags : 1,
tagClass: 'tag label label-info tags-airport',
typeahead: {
items: 'all',
afterSelect: function (val) {
this.$element.val("");
},
source: function(query) {
return mySource;
},
updater: function(item) {
return item;
}
}
});
现在,我需要动态地更新数据源,或者更好地,在代码中的某个点上,我创建了一个名为“ newSources”的新对象,我想将此对象作为源而不是旧的“ mySource”插入。
我该怎么办?我尝试了不同的方法,但没有成功。.
你们中的任何一个可以帮助我吗?
谢谢