如果我理解正确,在v4.0.0之前正确使用matcher是:
$('#myselect').select2({
...
matcher: function(term, text) {
// return true if matches, false if not
}
})
使用4.0.2这不起作用 - AFAICT matcher
只有一个参数,它是一个对象。我可以使用相同的函数签名并将其包装在oldWrapper
上,但我想避免这种情况......我无法找到任何示例或文档。那么,我如何使用新的匹配器?或者至少,功能签名是什么?
答案 0 :(得分:9)
找到它:https://github.com/select2/select2/blob/master/src/js/select2/defaults.js(搜索function matcher
)。
基本上,函数签名是:
matcher: function (params, data) {
// should return:
// - null if no matches were found
// - `data` if data.text matches params.term
}
然而,我的问题与" text"是一个硬编码的字段名称 - 我当然正在使用其他东西。希望它可以帮到某人。