web-dev-qa-db-ja.com

タイプ 'application / javascript'のファイル 'jquery'が見つかりませんでした

これは繰り返される質問のように思えるかもしれませんが、解決策はどれも私には役に立たないようです。私が持っています gem jquery-Rails私のGemfileで。また、行

//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require_tree .

そして、これは私のGemfileです。

source 'https://rubygems.org'


# Bundle Edge Rails instead: gem 'Rails', github: 'Rails/rails'
gem 'Rails', '4.2.1'

# Use SCSS for stylesheets
#gem 'sass-Rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
#gem 'coffee-Rails', '~> 4.1.0'
# See https://github.com/Rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :Ruby
# Use jquery as the JavaScript library
gem 'jquery-Rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/Rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/Rails/jbuilder
#gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:Rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Unicorn as the app server
# gem 'Unicorn'

# Use Capistrano for deployment
# gem 'capistrano-Rails', group: :development

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug'
  # Use mysql as the database for Active Record
  gem 'mysql2'
  # Access an IRB console on exception pages or by using <%= console %> in views
  gem 'web-console', '~> 2.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

私のapplication.html.erb:

<!DOCTYPE html>
<html>
<head>
  <title></title>
  <%= stylesheet_link_tag 'application', media: 'all' %>
  <%= javascript_include_tag 'application' %>
  <%= csrf_meta_tags %>
</head>
<body>

<%= yield %>

</body>
</html>

Railsアプリケーションを起動できません。問題が何であるかわかりません。MyRubyバージョンは2.1.6助けてください。

18
Souvik Das

RoR 4 をフォローしています。同じエラーに遭遇しましたcouldn't find file 'jquery' with type 'application/javascript'。私は次のことを行い、アプリの実行に成功しました

  • gem 'jquery-Rails'およびgem 'turbolinks'
  • bundle update
  • bundle install
29
novice_dev

これは、Gemfileにjqueryの依存関係を解決するために必要なgemがないために頻繁に発生します。

このため、Rails 5.x、

gem 'jquery-Rails', '~> 4.3', '>= 4.3.3'
gem 'Rails-ujs', '~> 0.1.0'

この後、バンドルインストールを実行します。

サーバーを再起動して最新の変更を更新し、出来上がり、動作します!

12
s Narayanaswamy

これは、Windowsですでに利用可能なデフォルトのjavascriptランタイムが原因ですが、互換性の問題がいくつかあります。最も簡単な回避策は、http://nodejs.org/download/からnodejsをインストールしてから、PCを再起動することです。これはすべての問題を解決します。

問題の詳細については、このページを参照してください: rubytutorialを追跡しようとしているWindows上のExecJS :: RuntimeError

1
Souvik Das

この問題は、以下の手順で修正できます。

  1. Require jqueryステートメントがapplication.jsにあることを確認してください

    //= require jquery

    //= require jquery_ujs

  2. 必要なGemがすべてGemfileに存在することを確認し、存在しない場合は追加してbundle installコマンドを実行します。

    gem 'jquery-Rails', '~> 4.3', '>= 4.3.3'

    gem 'Rails-ujs', '~> 0.1.0'3.'

  3. それでもエラーが表示される場合は、runnigでノードを更新します

    Sudo npm update npm -g

最後に、アプリケーションを更新します。

0
dreamBlitzer

ターミナルでgem install jquery-Railsを実行することもできます。それは私のために働いた。

0
H. Almidan

Gemfileにgem 'jquery-Rails'を追加し、バンドルインストールを実行するだけです。それは私のために働いた。

0
Adittya Verma

Gemfileに移動し、gem jquery-Railsのコメントが解除されていることを確認します。バンドルインストールを実行します。それはそれを行う必要があります。

0
Wilson

あなたのコントローラーファイルでは、Rails=

layout false

2行目のコントローラークラスの直下

class ExampleController < ApplicationController
layout false
0
Gabe