How do I search with the "&" keyword, e.g I want food & drink

时间:2015-12-10 01:47:00

标签: bootstrap-table

In bootstrap-table jquery (http://issues.wenzhixin.net.cn/bootstrap-table/)

How do I search with the "&" keyword, e.g I want food & drink. However, when read the source code, it has .replace for /&/ to &. Any idea I can bypass this? It is impossible to ask user to key in & in the search text box.

1 个答案:

答案 0 :(得分:1)

所以......我还是有点不清楚核心代码中没有错误。

看到这个证明“&”的小提琴搜索工作正常:

http://jsfiddle.net/dabros/x8efv6wf/1/

如果这在某种程度上无法满足您的需求,请详细说明原因。

然后查看一些扩展程序,例如multiple searchfilterfilter-control

http://bootstrap-table.wenzhixin.net.cn/extensions/

如果仍然不满意,则创建自定义搜索功能。如果使用服务器端分页很容易,但即使客户端也可以。

如果您坚持使用client-side(不是服务器端分页+搜索,意味着js进行搜索,而不是您自己的服务器代码),那么请查看自定义搜索。

我认为相对较新的功能,我自己并没有像我想要自定义搜索那样使用服务器端代码。

但这是:

自定义搜索功能#1956 https://github.com/wenzhixin/bootstrap-table/issues/1956

如何在行详细信息中搜索? #2007 https://github.com/wenzhixin/bootstrap-table/issues/2007

https://github.com/wenzhixin/bootstrap-table/pull/1979

拉动请求似乎最详细,看起来完整的例子仍然是otw,但如果你在那里阅读,不应该很难。

虽然坦率地说,坚持上面列出的插件/扩展,或者如果仍然不满意,使用服务器端代码 - 通过简单的执行/代码维护,您可以获得更大的控制权。