Bootstrap样式未应用于Rails页面

时间:2016-06-04 13:34:57

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

我是Rails的新手,所以一直关注构建项目的在线视频教程。

我一直在尝试添加Bootstrap,但即使在

之后
  1. 添加宝石,
  2. 进行捆绑安装,
  3. 重新启动mysql服务器,
  4. 将scss @bootsrap导入添加到application.css.scss文件
  5. 它仍然没有拉到我的索引页面。

    有什么我想念的吗?

    这是我的application.css.scss

    /*
     * This is a manifest file that'll be compiled into application.css, which will include all the files
     * listed below.
     *
     * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
     * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
     *
     * You're free to add application-wide styles to this file and they'll appear at the bottom of the
     * compiled file so the styles you add here take precedence over styles defined in any styles
     * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
     * file per style scope.
     *
     *= require_self
     */
    // Custom bootstrap variables must be set or imported before bootstrap itself.
    @import "bootstrap-sprockets";
    @import "bootstrap";
    

    这是我的宝石文件:

    source 'https://rubygems.org'
    
    gem 'rails', '4.2.6'
    gem 'sqlite3'
    gem 'simple_form', '>= 3.2.1'
    gem 'bootstrap-sass', '~> 3.3.6'
    gem 'sass-rails', '>= 3.2'
    gem 'uglifier', '>= 1.3.0'
    gem 'coffee-rails', '~> 4.1.0'
    gem 'jquery-rails'
    gem 'turbolinks'
    gem 'jbuilder', '~> 2.0'
    gem 'sdoc', '~> 0.4.0', group: :doc
    
    group :development, :test do
      gem 'byebug'
    end
    
    group :development do
      gem 'web-console', '~> 2.0'
    end
    
    gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
    

    谢谢!

1 个答案:

答案 0 :(得分:1)

请添加application.html.erb

<%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>

并添加application.css

@import "bootstrap-sprockets";
@import "bootstrap";
@import 'bootstrap/theme';