无法导入 bootstrap

Can't import bootstrap

我已经查看了很多解决方案,但仍然找不到解决我的问题的方法。我在 Windows OS 上使用 Rails 5.0.0.1,运行。我已经完成捆绑安装并重新启动服务器,以及降级 sass-rails 但我似乎无法解决问题。

我需要的 gems: bootstrap-sass <3.3.7> sass-rails <5.0.6, 3.2.0>

在我的 application.scss 文件中:

 @import "bootstrap-sprockets";
 @import "bootstrap"; 

在我的 application.js 文件中:

 //= require jquery
 //= require jquery_ujs
 //= require turbolinks
 //= bootstrap-sprockets
 //= require_tree .

The error page

请帮忙!谢谢!

编辑 这是我的 Gem 列表: (它过去没有两个版本,但我想当我降级 sass-rails 然后安装 autoprefixer-rails [=40= 时我可能搞砸了一些] 我找到了一个不同的解决方案。)

* 本地宝石 *

actioncable (5.0.0.1) actionmailer (5.0.0.1, 4.2.6) actionpack (5.0.0.1, 4.2.6, 3.2. actionview (5.0.0.1, 4.2.6) activejob (5.0.0.1, 4.2.6) activemodel (5.0.0.1, 4.2.6, 3.2 activerecord (5.0.0.1, 4.2.6) activesupport (5.0.0.1, 4.2.6, 3 arel (7.1.2, 7.1.1, 6.0.3) autoprefixer-rails (6.5.3) bigdecimal (default: 1.2.6) binding_of_caller (0.7.2) bootstrap-sass (3.3.7) builder (3.2.2, 3.0.4) bundler (1.13.6, 1.12.5) byebug (9.0.5) coffee-rails (4.2.1, 4.1.1) coffee-script (2.4.1) coffee-script-source (1.10.0) concurrent-ruby (1.0.2) debug_inspector (0.0.2) erubis (2.7.0) execjs (2.7.0) gem-path (0.6.1) globalid (0.3.7) hike (1.2.3) i18n (0.7.0) io-console (default: 0.4.3) jbuilder (2.6.0) journey (1.0.4) jquery-rails (4.2.1) json (1.8.3, default: 1.8.1) loofah (2.0.3) mail (2.6.4) method_source (0.8.2) mime-types (3.1) mime-types-data (3.2016.0521) mini_portile2 (2.1.0) minitest (5.9.0, 5.4.3) multi_json (1.12.1) nio4r (1.2.1) nokogiri (1.6.8 x64-mingw32) pkg-config (1.1.7) power_assert (0.2.2) psych (default: 2.0.8) puma (3.6.0) rack (2.0.1, 1.6.4, 1.4.7) rack-cache (1.6.1) rack-ssl (1.3.4) rack-test (0.6.3) rails (5.0.0.1, 4.2.6) rails-deprecated_sanitizer (1.0. rails-dom-testing (2.0.1, 1.0.7) rails-html-sanitizer (1.0.3) railties (5.0.0.1, 4.2.6, 3.2.22 rake (11.2.2, default: 10.4.2) rdoc (4.2.2, default: 4.2.0, 3.1 rubygems-update (2.6.8) sass (3.4.22, 3.1.21) sass-rails (5.0.6, 3.2.0) sdoc (0.4.1) spring (1.7.2) sprockets (3.7.0, 2.2.3) sprockets-rails (3.2.0) sqlite3 (1.3.11 x64-mingw32) test-unit (3.0.8) thor (0.19.1) thread_safe (0.3.5) tilt (2.0.5, 1.4.1) turbolinks (5.0.1) turbolinks-source (5.0.0) tzinfo (1.2.2) tzinfo-data (1.2016.6) uglifier (3.0.2) web-console (3.3.1, 2.3.0) websocket-driver (0.6.4) websocket-extensions (0.1.2)

添加@import后"bootstrap-sprockets"; @导入"bootstrap";在您的 application.scss 文件中,删除所有 *= require_self 和 *= require_tree 。 sass 文件中的语句。