避免 drupal 6 视图中的重复2-关系-结果

发布于 2024-12-20 21:14:51 字数 530 浏览 4 评论 0原文

我正在尝试使用 drupal6、视图和节点引用构建一个列表。 该列表应如下所示:

  • 车辆 1
    • 功能 1
    • 功能 2
    • 功能 3
    • 额外1
  • 1vehicle
  • 2vehicle 3

vehicle 是自定义节点类型,featureextra 也是。在我看来,我列出了所有vehicle节点(作为字段),添加了与featureextra节点的关系,并添加了引用字段。

现在我得到了想要的列表。但是,当显示的节点包含多个相同类型的关系时(请参阅上面列表中 vehicle 1 中的 feature),我会为每个关系获取一个结果行 (车辆 1 显示三次)。

有什么方法可以对这些结果进行分组吗?

I'm trying to build a list using drupal6, views and node reference.
The list should be look like:

  • vehicle 1
    • feature 1
    • feature 2
    • feature 3
    • extra 1
  • vehicle 2
  • vehicle 3

The vehicle is a custom node-type, feature and extra also. In my view I'm listing all vehicle-node (as fields), added relationships to feature and extra nodes and added the reference-fields.

Now I'm getting the desired list. But when the displayed node contains more than one relationship of the same type (see feature in vehicle 1 in list above) I'm getting one result line per relationship (vehicle 1 get displayed three times).

Is there any way to group these results?

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

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

发布评论

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

评论(1

清秋悲枫 2024-12-27 21:14:51

经过一段长时间的搜索并尝试实现自定义主题解决方案来合并重复的结果后,我发现了一个类似的问题在 drupal.org 上,我发现了一些有用的提示:

这似乎是一个与 SQL 相关的问题 (此处描述)无法用views2“解决”。

我现在使用参考视图模块(http://drupal.org/node/1319746),它允许设置“子”视图(即featuresextras) 我可以将其作为字段包含在我的原始视图中 (vehicles)。

After some longish time searching and trying to implement custom theming solutions to combine the duplicated results, I found a similar question at drupal.org where i found some useful hints:

It seems to be an SQL-related issue (described here) not "solvable" with views2.

I'm now using the Reference view module (http://drupal.org/node/1319746) which allows to set up "child"-views (i.e. features and extras) I can include as fields in my original view (vehicles).

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