KTOHさん そして m.ts10806さん、ありがとうございます。
確かに情報が少なくてすみませんでした。
私は、rails(Ver6.0.0)でjavascriptのプロジェクトを作成しようとしていました。
初めに試したことは、
1.「app/views/hellojs2/index.html.erb」を次の通りとする。
<script>
document.write("Hello, World(javascript)!");
</script>
こうした後、サーバーを起動すると、画面に「Hello, World(javascript)!」の表示がされました。
これが、私の思っていた通りのことです。
次にjsファイルを作成する方法を試してみようとしました。(これが上記とおなじです)
1.「app/views/hellojs2/index.html.erb」を次の通りとする。
<%= javascript_include_tag "hellojs2.js" %>
2.「app/views/hellojs2/index.html.erb」を次の通りとして保存する。
<%= javascript_include_tag "hellojs2.js" %>
3.「app/assets/javascripts」のパスを作成し、そのパスに「hellojs2.js」のファイルを次の通り作成する。
document.write("Hello, World(javascript)!");
ここまでの処理で、サーバーを起動すると、画面にエラーメッセージが表示されました。
ログを見ると、次のようなメッセージが表示されました。(画面エラーの内容もこれとほぼ同じ)
ActionView::Template::Error (Asset hellojs2.js
was not declared to be precompiled in production.
Declare links to your assets in app/assets/config/manifest.js
.
//= link hellojs2.js
and restart your server):
1: <%= javascript_include_tag "hellojs2.js" %>
app/views/hellojs2/index.html.erb:1
Started GET "/hellojs2/index" for 127.0.0.1 at 2019-11-14 11:05:35 +0900
[1m[35m (0.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
Processing by Hellojs2Controller#index as HTML
Rendering hellojs2/index.html.erb within layouts/application
Rendered hellojs2/index.html.erb within layouts/application (Duration: 56.9ms | Allocations: 11512)
Completed 500 Internal Server Error in 80ms (ActiveRecord: 0.0ms | Allocations: 13445)
ここで、このメッセージにあるように次の修正をしました。
1.「app/assets/config/manifest.js」のファイルに次の行を追加する。
//= link hellojs2.js
(ワイルドカード(*)は使用できない)
こうした後、サーバーを起動すると、画面に「Hello, World(javascript)!」の表示がされました。
これが、私の思っていた通りのことです。
私が疑問に起こったことは、
「なぜくなったかの理由がはっきりしないし、HPには、この方法が記載されていない。」ということです。
だから、これでいいのか、という質問をしました。
尚、もう少し調べたところ、次のことがわかりました。
1.エラーの原因は、「プリコンパイルできていない」ということである。
2.プリコンパイルする方法として、次の方法もある。
「config/initializers/assets.rb」のファイルに次の行を追加する。
Rails.application.config.assets.precompile += %w( hellojs2.js )