如何在drupal中创建动态页面?
我的内容位于以下网址中:
mysite.com/project/node-id
但随后我希望将用户定向到
mysite.com/entries/node-id当他们点击条目链接时。
我该如何实现这一目标?在条目页面中,我想显示一个视图,该视图从 url 获取节点 ID 并相应地显示结果。
I have contents in the following url:
mysite.com/project/node-id
But then i want the user to be directed to
mysite.com/entries/node-id when they click on entries link.
How do i achieve this? In the entries page i want to show a view which takes the node id from url and shows results accordingly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案在于使用带有观点的论证。 http://gotdrupal.com/videos/drupal-views-arguments 。该视频完全正确代表了我的要求!使用视图中的参数,我们可以创建“页面”类型显示的动态视图。
The answer lies in using arguments with views. http://gotdrupal.com/videos/drupal-views-arguments .This video exactly represents what i had asked for ! using arguments in views we can create dynamic views of 'page' type display.