Extjs 商店过滤 - 包括元字符

发布于 2024-12-07 01:20:27 字数 680 浏览 0 评论 0原文

我有一个具有注释字段(文本区域)的数据存储,并且想要显示满足用户输入(甚至是元字符)的所有注释。

我编写了以下函数来处理此问题:

function notefilter() {
    var newfilter = Ext.getCmp('searchnote');
    var searchStr = newfilter.getValue();
    searchStr = searchStr.replace('?', '\\?').replace('*', '\\*').replace('+', '\\+').replace('{', '\\{').replace('}', '\\}').replace('[', '\\[').replace(']', '\\]').replace('(', '\\(').replace(')', '\\)').replace('|', '\\|').replace('$', '\\$').replace('^', '\\^');

    var re = new RegExp(".*" + searchStr + ".*", "ig");
    Ext.getCmp('notesgrid').store.filter('Note', re);
}

但是,即使在转义元字符之后,过滤器也无法搜索元字符,但它适用于所有其他字母数字输入。

我错过了什么吗?

提前致谢 !

I have a data store having a Note field (a textarea) and want to display all Notes satisfying a user input (even metacharacters).

I've written the following function to handle this:

function notefilter() {
    var newfilter = Ext.getCmp('searchnote');
    var searchStr = newfilter.getValue();
    searchStr = searchStr.replace('?', '\\?').replace('*', '\\*').replace('+', '\\+').replace('{', '\\{').replace('}', '\\}').replace('[', '\\[').replace(']', '\\]').replace('(', '\\(').replace(')', '\\)').replace('|', '\\|').replace('

However the filter fails to search for metacharacters even after escaping them, but it works are all other alphanumeric input.

Am I missing something ?

Thanks in advance !

, '\\

However the filter fails to search for metacharacters even after escaping them, but it works are all other alphanumeric input.

Am I missing something ?

Thanks in advance !

).replace('^', '\\^'); var re = new RegExp(".*" + searchStr + ".*", "ig"); Ext.getCmp('notesgrid').store.filter('Note', re); }

However the filter fails to search for metacharacters even after escaping them, but it works are all other alphanumeric input.

Am I missing something ?

Thanks in advance !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩发小公举 2024-12-14 01:20:27

最后,让过滤器开始工作。 JavaScript 内置 escape() & encodeURIComponent() 为我完成了这项工作。我不必以编程方式转义元字符。

Finally, got the filter working. JavaScript's built in escape() & encodeURIComponent() did the work for me. I do not have to programatically escape the metachars.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文