Rails忽略了我的application.html.erb文件

时间:2019-03-07 19:59:16

标签: ruby-on-rails ruby

我的Rails应用程序出现了一些非常奇怪的行为。我有一个简单的项目,仅生成默认文件而没有任何生成。我希望能够将导航栏添加到我的application.html.erb文件中,但是当我尝试渲染它时,什么也没出现。

经过一番摸索后,我发现无论我在application.html.erb文件中键入什么内容,都不会出现任何东西,甚至更奇怪的是,如果我添加了时髦的语法(我希望Rails会出错),Rails似乎会忽略我的application.html.erb文件。

有趣的是,如果我的应用程序控制器中有一个html渲染器,则会弹出消息“ Hello”。对于可能出现的问题,我感到非常迷茫,我们将不胜感激!

注意:我在stackoverflow上发现了这个答案,几乎有相同的问题,但是建议的修复方法无效:application.html.erb is still not rendering

注意:我将按照本教程安装bootstrap:https://www.youtube.com/watch?v=ryelNMlp-iY

application.html.erb

<!DOCTYPE html>
<html>
  <head>
    <title>Thehighwayclinic</title>
    <%= csrf_meta_tags %>
    <%= csp_meta_tag %>

    <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track': 'reload' %>
    <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
  </head>

  <body>
    <p> hello world </p>
    <%= render 'navbar' %>
    <%= yield %>
  </body>
</html>

_navbar.html.erb

<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
      <a class="navbar-brand" href="#">Fixed navbar</a>
      <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
        <span class="navbar-toggler-icon"></span>
      </button>
      <div class="collapse navbar-collapse" id="navbarCollapse">
        <ul class="navbar-nav mr-auto">
          <li class="nav-item active">
            <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
          </li>
          <li class="nav-item">
            <a class="nav-link" href="#">Link</a>
          </li>
          <li class="nav-item">
            <a class="nav-link disabled" href="#">Disabled</a>
          </li>
        </ul>
        <form class="form-inline mt-2 mt-md-0">
          <input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
          <button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
        </form>
      </div>
</nav>

application_controller.rb

class ApplicationController < ActionController::Base
    # def hello
    #     render html: "hello, world!"
    # end

    def index
        render html: "hello"
    end
end

routes.rb

Rails.application.routes.draw do
  # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
  # Default rooting on page load
  root 'application#index'
end

1 个答案:

答案 0 :(得分:1)

在将renderhtml:选项一起使用时,Rails默认不使用布局文件。但是您可以使用layout: true选项来告诉Rails无论如何都要使用它:

render html: 'Hello', layout: true

了解Rendering in the Rails Guides