我正在遵循Michael Hartl的Rails指南,当我加载localhost:3000时,我在浏览器中收到以下错误消息:

 Sprockets::FileNotFound in Static_pages#home

 Showing /home/jonathan/Desktop/railsTut/sample_app/app/views/layouts/application.html.erb   where line #6 raised:

couldn't find file 'turbolinks'
 (in /home/jonathan/Desktop/railsTut/sample_app/app/assets/javascripts/application.js:16)

这是我来自上述消息的文件
// This is a manifest file that'll be compiled into application.js, which will include     all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts,      vendor/assets/javascripts,
 // or vendor/assets/javascripts of plugins, if any, can be referenced here using a     relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the    bottom of the
// the compiled file.
//
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE     SHOULD
// GO AFTER THE REQUIRES BELOW.
//
//= require jquery
//= require jquery_ujs
//= require bootstrap
//= require turbolinks
//= require_tree .

另外,我不确定是否相关,但这是我的Gemfile:
source 'https://rubygems.org'

gem 'rails', '3.2.13'
gem 'bootstrap-sass', '2.1'
gem 'bcrypt-ruby', '3.0.1'
gem 'faker', '1.0.1'
gem 'will_paginate', '3.0.3'
gem 'bootstrap-will_paginate', '0.0.6'
gem 'jquery-rails', '2.0.2'

   group :development, :test do
    gem 'sqlite3', '1.3.5'
 gem 'rspec-rails', '2.11.0'
 # gem 'guard-rspec', '1.2.1'
 # gem 'guard-spork', '1.2.0'
 # gem 'childprocess', '0.3.6'
 # gem 'spork', '0.9.2'
   end

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '3.2.5'
  gem 'coffee-rails', '3.2.2'
  gem 'uglifier', '1.2.3'
end

group :development do
  gem 'annotate', '2.5.0'
end

group :test do
gem 'capybara', '1.1.2'
gem 'factory_girl_rails', '4.2.1'
gem 'cucumber-rails', '1.2.1', :require => false
gem 'database_cleaner', '0.7.0'
# gem 'launchy', '2.1.0'
# gem 'rb-fsevent', '0.9.1', :require => false
# gem 'growl', '1.0.3'
end

group :production do
  gem 'pg', '0.12.2'
end

任何帮助深表感谢!

最佳答案

如我所见,您的gemfile中没有“turbolinks” ...只需添加它即可! :

  • gem 'turbolinks'添加到您的Gemfile中。
  • 运行bundle install
  • //= require turbolinks添加到您的Javascript list 文件中(通常是
    app/assets/javascripts/application.js处找到)。
  • 重新启动您的
    服务器,您现在正在使用turbolinks!
  • 关于ruby-on-rails - Action Controller : Exception caught - turbolinks issue?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17781981/

    10-13 02:06