我的布局文件夹中有这个,文件名application.html.erb
<!DOCTYPE html>
<html>
<head>
<title>One Month Rails</title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<% render 'layouts/header' %>
<%= yield %>
<% render 'layouts/footer' %>
</body>
</html>
我的布局文件夹中有这个,文件名_header.html.erb
<%= link_to "Home", root_path %>
<%= link_to "About", about_path %>
保存代码并刷新页面后,更改不会发生