如何让drupal视图显示基于节点的动态内容
是否可以让视图显示基于当前节点(不是 1 个集合节点,而是任何节点)的查询
我的情况:
用户提交一个节点,其中包含
另一个用户可以使用 2 个字段从另一个内容类型捐赠给该节点的信息:节点引用(选择节点)和整数(输入捐赠金额)
我需要一个块视图来显示当前显示节点的所有捐赠金额
(如果有人告诉我如何仅显示所有捐赠金额以显示捐赠金额,那就更好了)总额!)
提前致谢
Is it possible to have views show a query based on the current node (not 1 set node but any node)
my situation:
A user submits a node with information
another user can donate to that node from another content type using 2 fields: node reference (to pick the node) and integer (to enter donation amount)
I need a block view to show all the donated amounts for the current displayed node
(would be even better if someone told me how to just all the donated amounts up to show the total amount!)
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要动态过滤,视图参数是您的朋友。
添加字段和过滤器后,添加参数 Content: 节点引用(名称可以是您选择的任何名称,但请确保它是节点引用)。
在参数设置中,对于“如果参数不存在则采取的操作”,单击提供默认参数并从 URL 选择节点 ID,进行验证。
添加块视图并在块设置页面上启用它。它只会显示在适当的节点上。
检查本教程 了解更多详细信息。
要进行计算,请查看 Views Calc 模块。
If you need dynamic filtering, views arguments is your friend.
After you add fields and filters, add an argument Content: node reference (the name would be whatever you chose to name it, but make sure it's node reference).
In the argument setting, for "Action to take if argument is not present" click on provide default argument and choose Node ID from URL, do validation.
Add a block view and enable it on the block settings page. It's only going to show on the appropriate nodes.
Check this tutorial for more detail.
To do calculations, take a look at Views Calc module.