是否可以保存没有字段的 Drupal 视图?
在 Drupal 6 中,我创建了一个视图,显示为块。我的目标是如果视图返回结果则显示一些文本,如果视图为空则隐藏它。我使用标题作为文本,除了要求显示至少一个字段之外,这完全有效。如果我没有设置任何显示字段,则无法保存视图。有没有办法克服这个问题,而无需创建模块或破解主题?
In Drupal 6, I have created a view, displayed as a block. My goal is to display some text if the view returns results, and hide it if the view is empty. I am using Header for the text, and this works perfectly except for the requirement to show at least one field. I can't save the view if I don't set any fields for display. Is there a way to get past this, without creating a module or hacking the theme?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Drupal 论坛上的用户 nevets 给出了一个很好的例子,帮助我解决了这个问题。查看http://drupal.org/node/728336#comment-2659760的信息。
The user nevets on the Drupal forums gave a great example that helped me solve this. Check out http://drupal.org/node/728336#comment-2659760 for the information.
您应该能够添加一个字段并选中其“从显示中排除”复选框。
You should be able add a field and check its "exclude from display" checkbox.
按照斯科特说的做,并选择“行样式”=节点,这样字段将不再需要......
Do as Scott say, and select for "Row Style" = Node, so Fields will not required anymore...
更改视图格式选项下的显示链接,您的目的就达到了。
Change the show link under Format option of view, your objective will be accomplished.