1、修改默认查询方法,使其可以根据value查询
this.element.select2({ allowClear: true, matcher: function (term, text, element) { return text.toUpperCase().indexOf(term.toUpperCase()) >= 0 || element.val().toUpperCase().indexOf(term.toUpperCase()) >= 0; } });
其中,select2插件是通过遍历matcher方法来匹配查询结果的函数,term:文本框中输入内容,text:当前option显示的文本,element:当前option