ruby-on-rails – 如果内容产生,则渲染其他东西(Rails 3)

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如果内容产生,则渲染其他东西(Rails 3)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经远离了Rails一段时间,所以也许我错过了一些简单的东西.

你怎么能完成这个:

<%= yield_or :sidebar do %>
  some default content
<% end %>

甚至:

<%= yield_or_render :sidebar,'path/to/default/sidebar' %>

在第一种情况下,我正在尝试:

def yield_or(content,&block)
  content_for?(content) ? yield(content) : yield
end

但是,这会给出一个“无块给定”错误.

在第二种情况下:

def yield_or_render(content,template)
  content_for?(content) ? yield(content) : render(template)
end

当没有定义内容时,这可以工作,但是一旦使用content_for来覆盖默认内容,它会引发相同的错误.

我使用this作为起点,但它似乎只在视图中直接使用时才起作用.

谢谢!

解决方法

这样的东西怎么样?
<% if content_for?(:whatever) %>
  <div><%= yield(:whatever) %></div>
<% else %>
  <div>default_content_here</div>
<% end %>

Inspiration from this SO question

原文链接:https://www.f2er.com/ruby/271002.html

猜你在找的Ruby相关文章