使用 Rails 3 中的内容输入渲染部分内容
我正在尝试干燥我的应用程序中的一些 HTML,目前我有一个 HTML 块,它将被重复使用多次
<div class="block">
<div class="block_head">
<div class="bheadl"></div>
<div class="bheadr"></div>
<h2>Configuration Needed</h2>
</div>
<div class="block_content">
<div class="message warning">
<p>You have not create an admin user yet</p>
</div>
</div>
<div class="bendl"></div>
<div class="bendr"></div>
</div>
我想做的是创建一个部分或沿着这些线的东西,并能够传递块头和内容的内容
有谁知道在rails 3中执行此操作的方法
I am trying to DRY up some of my HTML in my application currently I have a block of HTML that will get re-used multiple times
<div class="block">
<div class="block_head">
<div class="bheadl"></div>
<div class="bheadr"></div>
<h2>Configuration Needed</h2>
</div>
<div class="block_content">
<div class="message warning">
<p>You have not create an admin user yet</p>
</div>
</div>
<div class="bendl"></div>
<div class="bendr"></div>
</div>
What I would like to do is to create a partial or something along those lines and be able to pass in the content to the block header and content
Does anyone know of a way to do this in rails 3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我这样做的方法是拥有一个视图/共享文件夹。然后,我在内部创建部分内容,并像这样调用它们:
其中共享/flash_error是:
如果您想将部分内容放在部分文件夹中,请使用以下语法:
The way i do it is to have a views/shared folder. Then, i create partials inside and i call them like :
where shared/flash_error is :
If you want to have your partials in the partial folder, use this syntax :