Drupal 视图中的范围
我有一个存储两个数值的内容类型,实际上是范围的最小值和最大值。
我想配置视图模块过滤器,以便它将显示节点范围包含在视图中指定的范围内或与视图中指定的范围重叠的节点。
I have a content type that stores two numerical values, effectively the minimum and maximum of a range.
I would like to configure the views module filter so that it will display nodes where the node range is contained within or overlaps a range specified in the view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
视图不允许混合 OR 和 AND 过滤器。您可以配置现有过滤器以显示 N > 的所有节点。 30 且N< 50(介于 30 和 50 之间,不包括 30 和 50)。
如果您想要更复杂的过滤器,例如具有业务逻辑的过滤器或创建非此即彼条件的过滤器,您可以通过 hook_views 自己定义它们。这是没有记录的,需要大量谷歌搜索和阅读现有的过滤器代码。
Views does not allow mixed OR and AND filters. You can configure an existing filter to show all nodes where N > 30 AND N < 50 (between, excluding, 30 and 50).
If you want more complex filters, e.g. filters that have business logic, or filters that create either/or conditions, you can define them yourself, trough hook_views. This is badly documented and requires a lot of googling and reading existing filter code.