Drupal:从节点获取参数而不是块视图的 url?
我为节点和块设置了一些术语,我想从页面获取参数,但页面如下所示:
但页面上的术语如下所示:
term1
如何获取块来获取 term1 arg 并显示具有 term1 的其他节点?
I have some terms set for a node and a block that I want to grab the arguments from the page but the page is like so:
but the terms are on the page like so:
term1
how can I get the block to grab the term1 arg and show the other nodes that has term1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能仅使用 PHP 从页面获取数据(无需某种复杂的 HTML 树解析)。相反,我建议从节点本身获取术语数据。考虑以下几点:
You cannot just grab data from the page with PHP (without some sort of complicated HTML tree parsing). Instead, I would suggest getting the term data from the node itself. Consider the following: