【发布时间】:2013-04-16 15:23:39
【问题描述】:
在 Rails 中,您可以执行以下操作:
application.html.erb:
<h1><%= yield :title %></h1>
<%= yield %>
someother_template.html.erb:
content_for :title { 'Some Title' }
other stuffz
有没有办法使用 emberjs 来做这种事情?
【问题讨论】:
标签: javascript ruby-on-rails templates ember.js