Drupal 视图中的范围

发布于 2024-10-18 04:48:10 字数 97 浏览 0 评论 0原文

我有一个存储两个数值的内容类型,实际上是范围的最小值和最大值。

我想配置视图模块过滤器,以便它将显示节点范围包含在视图中指定的范围内或与视图中指定的范围重叠的节点。

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 技术交流群。

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

发布评论

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

评论(1

泛滥成性 2024-10-25 04:48:10

视图不允许混合 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.

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