我想我有同样的问题。 使用多个 yield 插入内容
我尝试了解决方案。在我看来,我试图<%= yield :content %>
在我的 application.html.erb 和 havecontent_for :content
和yield
里面。但它不适用于我的应用程序。您能否就我的问题进行更多解释或提供示例场景?
里面的链接不能重新加载,所以我不会在我将显示的每个模板上使用渲染部分。
我最近才开始学习 Rails,所以对我来说有点困惑。谢谢你。
我试过这个;这只是一个示例,稍后我将修复侧边栏的连接。
在我的 applicaion.html.erb
<!DOCTYPE html>
<html>
<head>
<title>Clinks</title>
<%= stylesheet_link_tag "application", media: "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<section id="container" >
<%= render 'layouts/header' %>
<%= render 'layouts/sidebar' %>
<section id="main-content">
<section class="wrapper">
<div class="row">
<!-- %= yield % -->
<%=yield(:content) %>
</div><!--/row -->
</section><!--/wrapper -->
</section><!--/main-content -->
</section><!--/container -->
</body>
</html>
在我的 menu_tables.html.erblayouts
文件夹中。
<% content_for(:content) do %>
<%= render 'menu_tables/sidemenu' %>
<%= yield %>
<% end %>
<%= render template: "layouts/application" %>
在我的 routes.rb
Rails.application.routes.draw do
root :to => 'pages#home'
resources :menu_tables, except: [:show]
end
然后在 menu_tables 控制器下的 _sidemenu.html.erb 中是链接的代码,因此侧边栏的每个链接都有不同的侧边菜单。