我目前有我的面包屑与 gem 一起工作,但我不确定如何控制它的输出。现在,我想在视图中添加类似这样的- show_breadcrumbs false
内容,然后让它不显示,但我不确定我应该怎么做。我对产量/块不太熟悉。有人可以告诉我如何写这个吗?
这是我的尝试:
在我的助手中:
def show_breadcrumbs(show=true)
if show
render :partial => 'layouts/breadcrumbs'
end
end
在我的 application.html.haml 中:
= yield :show_breadcrumbs
在我看来:
- show_breadcrumbs false