从我的 app/assets/images 向我的 rails 应用程序添加徽标

adding logo to my rails app from my app/assets/images

我正在使用 rails 和 tailwind css 开发我的 intagram 克隆应用程序。我设法创建了一个导航栏,我试图在“导航栏”的左侧添加一个徽标,但是当我在本地 运行 它时,图像没有加载。

我的 navbae.html.erb :

<nav class="flex justify-between items-center">
  <a href=<%= root_path %>>
  <%= image_tag "/images/logo.png" %>
  </a>  
  <div>
    <% if user_signed_in?%>
        <a><%= link_to"Home", root_path, class: "text-lg no-underline text-grey-darkest hover:text-blue-dark ml-2"%> <i class="fas fa-home"></i></a>
        <a><%= link_to"My profile", profile_path(current_user.username), class: "text-lg no-underline text-grey-darkest hover:text-blue-dark ml-2"%> <i class="far fa-user"></i> </a>
        <a><%= link_to"New Post",new_post_path, class: "text-lg no-underline text-grey-darkest hover:text-blue-dark ml-2"%> <i class="fas fa-plus-square"></i></a>
        <a><%= link_to "log out", destroy_user_session_path,method: :delete, class: "text-lg no-underline text-grey-darkest hover:text-blue-dark ml-2" %> <i class="fas fa-sign-out-alt"></i></a>
        <%else%>
    <a><%= link_to "sign up", new_user_registration_path,class: "text-lg no-underline text-grey-darkest hover:text-blue-dark ml-2" %> <i class="fas fa-user-plus"></i></a>
    <a><%= link_to "sign in", new_user_session_path,class: "text-lg no-underline text-grey-darkest hover:text-blue-dark ml-2" %><i class="fas fa-sign-in-alt"></i></a>
  <%end%>
  </div>
</nav>

如果您的徽标位于此路径 app/assets/images/logo.png,您也许应该这样做

<%= image_tag 'logo.png' %>