避免 drupal 6 视图中的重复2-关系-结果
我正在尝试使用 drupal6、视图和节点引用构建一个列表。 该列表应如下所示:
- 车辆 1
- 功能 1
- 功能 2
- 功能 3
- 额外1
- 1vehicle
- 2vehicle 3
vehicle
是自定义节点类型,feature
和 extra
也是。在我看来,我列出了所有vehicle
节点(作为字段),添加了与feature
和extra
节点的关系,并添加了引用字段。
现在我得到了想要的列表。但是,当显示的节点包含多个相同类型的关系时(请参阅上面列表中 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过一段长时间的搜索并尝试实现自定义主题解决方案来合并重复的结果后,我发现了一个类似的问题在 drupal.org 上,我发现了一些有用的提示:
这似乎是一个与 SQL 相关的问题 (此处描述)无法用views2“解决”。
我现在使用参考视图模块(http://drupal.org/node/1319746),它允许设置“子”视图(即
features
和extras
) 我可以将其作为字段包含在我的原始视图中 (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
andextras
) I can include as fields in my original view (vehicles
).