Drupal:视图分类树
我正在使用分类法和节点,我想在视图中显示它们。
我的分类是:
产品类别
- 产品线
-- 产品
--- 特征(节点)
我想在视图中显示这棵树,但我无法得到好的结果。
例如我有:
产品类别(手机)
- 产品线(电话a)
-- 产品(电话104)
- 产品线(电话 b)
-- 产品(电话202)
- 产品线(电话a)
-- 产品(电话124)
- 产品线(电话 b)
-- 产品(电话 242)
我想要这个结果:
电话
电话a
电话104
电话124
电话b
电话202
电话242
这可能吗?
I am working with taxonomies and nodes and I want to show them in a view.
My taxonomies are:
Product Category
- Product Line
-- Product
--- Features (Node)
I want to show this tree in a view but I can not get a good result.
For example I have:
Product category (phones)
- Product line (phone a)
-- Product (phone 104)
- Product line (phone b)
-- Product (phone 202)
- Product line (phone a)
-- Product (phone 124)
- Product line (phone b)
-- Product (phone 242)
And I want this result:
phones
phone a
phone 104
phone 124
phone b
phone 202
phone 242
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用api函数taxonomy_get_tree
通过他的函数你可以获得你的tanonomy结构。然后您可以制作自定义模板。
You can use the api function taxonomy_get_tree
With his function you can get your tanonomy structure. Then you can make a custom template.
尝试http://drupal.org/project/views_tree。
有 Drupal 6 版本可用。
如果是 Drupal 7 版本,请检查问题 http://drupal.org/node/1044362。
Try http://drupal.org/project/views_tree.
There is Drupal 6 version available.
In case of Drupal 7 version, check the issue http://drupal.org/node/1044362.