将Bootstrap安装到Rails项目中

时间:2015-04-02 03:41:01

标签: ruby-on-rails twitter-bootstrap ruby-on-rails-4

所以我正在开发我的第一个rails项目,我正在尝试安装bootstrap,但是我遇到了一些问题。我按照github页面上的说明进行操作,但当我完成所有操作并重新加载页面时,我收到了此错误:有人可以帮助我吗?

Can someone please show me what I am doing wrong

2 个答案:

答案 0 :(得分:1)

您将代码置于错误的路径中。请将文件名app/assets/stylesheets.css编辑为app/assets/stylesheets.css.scss,然后将@import "bootstrap-sprockets";@import "bootstrap";放入此文件中。

有关详细信息,请访问https://github.com/twbs/bootstrap-sass

答案 1 :(得分:0)

我不确定,但是这个宝石此时不起作用,我建议你使用CDN或其他css of boostrap。 我没有使用那个宝石。

<!-- 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>

希望有所帮助。