12
目前我正試圖在Ruby on Rails中設置一個簡單的應用程序。我已經遷移了數據庫,播種了它,現在我陷入了以下錯誤。不隱式將nil轉換爲字符串
no implicit conversion of nil into String
Extracted source (around line #4):
1: <!--[if lt IE 9]>
2: <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
3: <![endif]-->
4: <%= stylesheet_link_tag 'blueprint/screen', :media => 'screen' %>
5: <%= stylesheet_link_tag 'blueprint/print', :media => 'print' %>
6: <%= stylesheet_link_tag 'custom', :media => 'screen' %>
這似乎是資產標籤助手不能正常工作或返回零(如果這甚至可能)?
這是您的rails版本中的一個已知錯誤,它永遠不會在Rails 3.0.x中修復,請參閱https://github.com/rails/rails/issues/9619 – Jarl