Drupal6:Views2 中暴露的过滤器存在问题
我正在尝试在 Drupal6 中创建一个视图;我希望有一个文本字段用作过滤器;我已经定义了一个搜索词类型的公开过滤器,当用户输入正确的字符串时它运行良好。我还想在子字符串的情况下显示结果(使用 LIKE 运算符),但我看不到如何在搜索词中定义它。
我是否必须覆盖 form_alter 中的 SQL 字符串?如果是这样,我该怎么办?
I'm trying to create a View in Drupal6; I would like to have a single textfield to be used as filter; I've defined an exposed filter of type search term and it runs fine when the user enters the correct string. I would like to show results also in case of substring (using the LIKE operator) but I cannot see how to define it in search term.
Do I have to override SQL string in a form_alter? If so, how can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以通过 Contains 运算符实现。
This should be possible with the Contains operator.