Drupal 视图/服务:想要一个查询中所有术语的 5 个最新节点(嵌套视图或子视图)
我使用 Drupal 6 CMS 作为自定义客户端的基于 JSON 的 REST 服务提供程序。我目前正在使用 2 个内容视图:
- 一个获取所有分类术语的视图
- 一个获取每个术语的 5 个最新发布节点的视图
目前,我使用相当多的请求来获取以下数据:
- 列表分类术语(1 个请求)
- 每个术语的 5 个最新节点(每个术语 1 个请求,通常约为 10 个请求)
我希望通过在 1 个请求中提供此数据来减少通信开销。这意味着我应该创建一个检索以下数据的视图:
- Term ID 1
- Node 1
- Node 2
- Node 3
- Node 4
- Node 5
- Term ID 1
- Node 6
- Node 7
- Node 8
- Node 9
- Node 10
等等
为了创建这个,我需要一些子视图机制或子视图机制,就像 SQL 中的子查询机制一样强大。
关于如何实现这一点有什么想法吗?
我可以尝试 php 编码路线,但我想在这个项目中避免使用它,并尽可能保持 Drupal 安装为普通版本(除了安装附加模块之外)
I'm using a Drupal 6 CMS as a JSON based REST service provider for a custom client. I'm currently using 2 views for the content:
- A view to get all taxonomy terms
- A view to get the 5 latest published nodes for each term
At the moment I'm using quite a lot of requests to get the following data:
- List of Taxonomy Terms (1 Request)
- The 5 latest nodes for every term (1 Request per term, typically about 10 requests)
I'd like to reduce my communication overhead by providing this data in 1 Request. This means I should create a View that retrieves the following data:
- Term ID 1
- Node 1
- Node 2
- Node 3
- Node 4
- Node 5
- Term ID 1
- Node 6
- Node 7
- Node 8
- Node 9
- Node 10
etc
In order to create this, I would need some subview mechanism or subview mechanism, something as powerfull as the subquery mechanism in SQL.
Any ideas on how to realize this?
I could try the php coding route, but I'd like to avoid it in this project and keep the Drupal installation as vanilla as possible (aside from installing additional modules)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这是否可以通过视图来完成。
如果这仅作为 JSON 接口,您可以自己将其编码为常规查询。编写一个模块来检索您想要的数据并以您可以处理的方式返回它。您可以通过创建自定义站点(例如 www.mysite.com/my_json_result)来完成此操作,以便您的服务可以访问它。
I'm not sure if this can be done via Views.
If this only serves as a JSON interface, you can code it by yourself as a regular query. Write a module that retrieves the data you want and return it in a way that you can process it. You could do this by creating a custom site (eg. www.mysite.com/my_json_result) so that your service can access it.
有人正在开发一个模块来完成这样的事情,http://drupal.org/project/services_views,看一下。
Someone is working on a module to do something like this allready, http://drupal.org/project/services_views, take a look.