0

私は Rails の初心者で、Michael Hartl のチュートリアル ( http://ruby.railstutorial.org/chapters/filling-in-the-layout#fig-layout_no_logo_or_custom_css ) に従っています。

しかし、ページホームを実行すると: localhost:3000/static_pages/home

このエラーメッセージが表示されました

ArgumentError in Static_pages#home

Showing D:/RailsPlay/sample_app/app/views/layouts/application.html.erb where line #5 raised:

different prefix: "C:/" and "D:/RailsPlay/sample_app/app/assets/stylesheets"
(in D:/RailsPlay/sample_app/app/assets/stylesheets/custom.css.scss)
Extracted source (around line #5):

2: <html>
3:   <head>
4:     <title><%= full_title(yield(:title)) %></title>
5:     <%= stylesheet_link_tag "application", media: "all" %>
6:     <%= javascript_include_tag "application" %>
7:     <%= csrf_meta_tags %>
8:     <!--[if lt IE 9]>
Rails.root: D:/RailsPlay/sample_app`

これは、custom.css.scss ファイルの内容です。

@import "bootstrap";

これは application.html.erb の内容です:

<!DOCTYPE html>
<html>
<head>
<title><%= full_title(yield(:title)) %></title>
<%= stylesheet_link_tag "application", media: "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header class="navbar navbar-fixed-top navbar-inverse">
  <div class="navbar-inner">
    <div class="container">
      <%= link_to "sample app", '#', id: "logo" %>
      <nav>
        <ul class="nav pull-right">
          <li><%= link_to "Home",    '#' %></li>
          <li><%= link_to "Help",    '#' %></li>
          <li><%= link_to "Sign in", '#' %></li>
        </ul>
      </nav>
    </div>
  </div>
</header>
<div class="container">
  <%= yield %>
</div>
</body>
</html>

何時間も運が悪いのですが、何が悪いのか分かりますか?

ご協力ありがとうございました :)

4

1 に答える 1

3

これを読んでください https://github.com/rails/rails/issues/660

しかし、あなたの問題を解決するために私が考える最終的な解決策は、プロジェクトを Rails がインストールされているドライブに移動することです。C:\

于 2013-06-26T06:27:26.093 に答える