有没有办法在整个集合中添加布局?
细节
假设我有一个@promoted_storIEs的集合.我想在渲染集合周围渲染一些HTML,但仅当@promoted_storIEs不为空时.我想要的就是这样:
<% if @prometed_storIEs.present? %><div promoted-storIEs"> <%= yIEld %></div>解决方法 虽然不如想象的解决方案那么优雅,但这应该会达到类似的效果:
# Helperdef render_collection_template(template,collection) render template: "layouts/#{template}",locals: { collection: collection } if collection.present?end# VIEw<%= render_collection_template 'promoted_storIEs',@promoted_storIEs %># Template<div > <%= render collection %></div>
现在有一个pull request用于实现集合渲染的集合布局的rails.
总结以上是内存溢出为你收集整理的ruby-on-rails – Rails:如何在集合周围渲染布局?全部内容,希望文章能够帮你解决ruby-on-rails – Rails:如何在集合周围渲染布局?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)