如何使用 Drupal 中的视图列出参数中指定的用户创建的所有节点?
我一直在尝试使用视图创建一个页面,该页面将列出特定用户创作的所有节点。 用户名将在路径中指定(例如 - stuff/[user-name] )
有人可以告诉我如何使用 Views 来执行此操作。 我陷入了死胡同
I have been trying to create a page using views that will list down all the nodes authored by a specific user.
The user name will be specified in the path (like - stuff/[user-name] )
Can someone please tell me how to do this using Views.
I am stuck on a dead end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于视图 url 路径指定:stuff/%
在参数部分添加: user -> user: name
应该这样做,但我不确定它是否有问题(请参阅此问题:http:// /drupal.org/node/744468)
如果您使用 user:id 而不是用户名,那就没问题了。
for the views url path specify: stuff/%
in the arguments section add: user -> user: name
Should do it, but I'm not sure if it isn't buggy (see this issue: http://drupal.org/node/744468)
If you use user:id instead of username, you will be fine.