因此,我正在開發我的第一個rails項目,並試圖安裝bootstrap,但我遇到了一些問題。我遵循github頁面上的指示,但當我做了所有事情並重新加載了我的頁面時,我收到了這個錯誤:有人可以幫我嗎?將Bootstrap安裝到Rails項目中
0
A
回答
1
您正在將您的代碼放在錯誤的路徑中。請將文件app/assets/stylesheets.css
的名稱編輯爲app/assets/stylesheets.css.scss
,然後將@import "bootstrap-sprockets";
和@import "bootstrap";
置於此文件中。
欲瞭解更多詳情,請訪問https://github.com/twbs/bootstrap-sass。
0
我不知道,但創業板不會在這個時候工作,我建議您使用CDN或其它CSS自舉的。 我沒有得到使用那個寶石。
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
希望有幫助。
相關問題
- 1. Twitter-bootstrap-rails:它是否將Bootstrap安裝到項目中?
- 2. 使用bundle install在我的Ruby on Rails項目中安裝Bootstrap
- 3. 將Bootstrap-Image-Gallery添加到Rails項目
- 4. 在Rails中安裝Bootstrap MVC
- 5. 如何將SignalR.Client.NET35安裝到項目中
- 6. 無法安裝gem'twitter-bootstrap-rails'
- 7. 將許多項目輸出添加到安裝項目中
- 8. Android將Eclipse項目安裝到DeviceAnywhere
- 9. 安裝bootstrap到grails
- 10. Bootstrap v4在Rails中安裝問題
- 11. 無法使用rails g bootstrap:使用'twitter-bootstrap-rails'進行安裝
- 12. 如何從VS 2010部署安裝項目安裝到Windows 7中的公共目錄安裝項目
- 13. 安裝前安裝/安裝項目檢查以前安裝的項目?
- 14. Rails Bundle在bootstrap-sass上安裝失敗
- 15. 將Office 2010安裝exe包裝爲安裝項目?
- 16. 不成功的鍊金術CMS安裝到Rails 4.1.0.rc2項目
- 17. 安裝MFC項目
- 18. C#安裝項目
- 19. 安裝項目modificatios
- 20. 安裝Grails項目
- 21. Symfony項目安裝
- 22. 安裝項目vs2010
- 23. VS2008安裝項目
- 24. 將多個Laravel 4項目安裝到子目錄
- 25. 如何將MLlib Apache Spark庫安裝到JAVA Eclpise項目中?
- 26. 無法將Microsoft.ProjectOxford.Face NuGet安裝到Xamarin Studio iOS項目中
- 27. 將.Net框架更新添加到安裝項目中
- 28. 無法將NuGet包安裝到項目中
- 29. 如何將Google API的json-simple jar安裝到maven項目中?
- 30. angularjs:無法將角度餅乾安裝到我的項目中
重新啓動服務器?並且請將文件命名爲filename.scss。和額外的CSS沒有區別 – argentum47 2015-04-02 04:46:12
你是對的,它現在的作品! – Swifter 2015-04-02 05:25:39
用戶使用sass,所以命名* .sass會更合適;) – 2015-04-02 07:52:17