gpt4 book ai didi

javascript - 按精确匹配过滤 extjs 商店

转载 作者:行者123 更新时间:2023-12-02 14:40:54 30 4
gpt4 key购买 nike

我有这个代码可以过滤我的商店

onLicenseGridSelect: function(rowmodel, record, index, eOpts) {
Ext.getStore('LicenseFeaturesStore').clearFilter();
Ext.getStore('LicenseFeaturesStore').filter( 'license_id', record.data.license_id );
},

它工作正常,但我需要搜索精确值,而不是任何匹配值,现在它只返回以任何方式匹配的值,我如何更改它以搜索精确值。

假设我有数组值 (3, 35, 36)

我运行了 3 的过滤器,它给了我所有这些结果,我只想要 3

最佳答案

这就像一个魅力

var store = Ext.getStore('LicenseFeaturesStore');
store.filter({
property: 'license_id',
exactMatch: true,
value: record.data.license_id
});

完美,谢谢

关于javascript - 按精确匹配过滤 extjs 商店,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37026995/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com