5

I am following Michael Hartl's Rails guide, and when I load localhost:3000 I get the following error messages in the browser:

 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 my file from the aformentioned message

// 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 .

also, I am not sure if it is related, but here is my 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

Any help is much appreciated!

4

3 回答 3

6

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

  • 添加gem 'turbolinks'到您的 Gemfile。
  • 运行bundle install
  • 添加//= require turbolinks到您的 Javascript 清单文件(通常位于app/assets/javascripts/application.js)。
  • 重新启动您的服务器,您现在正在使用 turbolinks!
于 2013-07-22T07:59:52.487 回答
3

正如 RomanDev 所说,只需将其删除,除非您像我一样尝试使用 turbolinks。

在这种情况下//= require turbolinks,从您的 application.js 文件中删除。

于 2013-08-28T03:42:01.587 回答
0

我花了很长时间才意识到向 gemfile 添加 turbolink 可以解决这个问题。作为初学者,我也正在阅读 Hartl 的教程(显然)。

于 2015-02-14T05:35:29.807 回答