Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个布局main.html.haml和alternative.html.haml,它们共享一些元素。我想在他们之间分享一份。
main.html.haml
alternative.html.haml
使用render ='my_partial'似乎不起作用。我应该怎么做?
render ='my_partial'
如果您在 layouts 文件夹中创建了部分内容,那么
尝试这个
<%= render :partial => 'layouts/partial' %>
希望对你有帮助