content_for与provider的比较
我们知道erb模板向layout传值最好的方法是用content_for。
方法如下:
#/app/views/layouts/application.html.erb <title><%= yield :title %></title> #/app/views/projects/index.html.erb <% content_for :title, "Projects" %>
今天才注意到从rails 3.1开始增加了provide方法。
#/app/views/projects/index.html.erb <% provide :title, "Projects" %>
如果你不用rails 3.1的新特性http streaming,content_for与provider作用基本相当。区别在于使用htp streaming时provider会在渲染页面时首先执行。而content_for是顺序执行,而且content_for会把多个结果拼接到一起后返回,所以当执行到第一个content_for是并不能立即返回,页面还在试图寻找有没有其它content_for。不能起来http streaming的效果。
具体参考:http://asciicasts.com/episodes/266-http-streaming