48
29

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rails6でapplication.jsが読み込まれない。

Last updated at Posted at 2019-10-03

困ったこと

Railsチュートリアルを進めていたらこんなエラーが。
キャプチャ.PNG

ActionView::Template::Error (The asset "application.js" is not present in the asset pipeline.):

application.html.erbのここでエラーが出てたみたい。
Railsチュートリアルの通りに進めていたのになんでだろう。

エラー部分のコード
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>

解決

どうやらRails6.0でwebpackerが追加された(表現あってるのかわからないけど)ことによって、
webpackerがJavascriptをコンパイルできるようにしてあげなければいけないらしい。

改コード
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>

ということでエラーが出たコードの代わりにこれを使用すると解決した。
Rails6使うときはjavascript_include_tagじゃなくてjavascript_pack_tagを使わなければ、という備忘録でした。

以上!

48
29
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
48
29

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?