007 content for

简介:
在layout/application.rhtml中是一个全局渲染模板,在此模板的html代码中插入
<%= yield%>可以将控制器中对应action的模板嵌入,也可以在application.rhtml模板的框架中留出位置来使用<%= yield  :symbol%>,然后在action模板中使用
<%content_for :symbol do %>
<%=  #content%>
<%end%>
将#content显示在<%= yield  :symbol%>的位置
 
例如:
在application.rhmtl中:
 
在index.rhtml中:
 
最终渲染结果的html代码:
 




本文转自 fsjoy1983 51CTO博客,原文链接:http://blog.51cto.com/fsjoy/113290,如需转载请自行联系原作者
目录
相关文章
|
5月前
|
JSON 数据格式
Content type ‘text/plain;charset=UTF-8‘ not supported,这里要把测试文件转为json格式
Content type ‘text/plain;charset=UTF-8‘ not supported,这里要把测试文件转为json格式
head 插件 Content-Type header [application/x-www-form-urlencoded] is not supported
head 插件 Content-Type header [application/x-www-form-urlencoded] is not supported
139 1
|
存储 Android开发
解读ImageView的wrap_content和adjustViewBounds的工作原理
ImageView是android开发过程中经常会使用的一种组件,由于android屏幕碎片化的问题,有时候我们无法设定一个具体的宽高。比如说width是match_parent的,这时候我们还想让图片在宽度完全填充并能正常显示,我们直接会想到将height设置为wrap_content。但是用过的同学都知道ImageView的实际区域要大于图片区域
367 0
|
JavaScript 前端开发
JavaScript 无法获取响应 header 的 Content-Disposition 字段
JavaScript 无法获取响应 header 的 Content-Disposition 字段
1036 0
JavaScript 无法获取响应 header 的 Content-Disposition 字段
|
JSON JavaScript API
axios设置content-type
axios设置content-type
998 0
the content is displayed over another view controller’s content
the content is displayed over another view controller’s content
131 0
the content is displayed over another view controller’s content
|
容器 前端开发
|
XML 数据格式 前端开发