前提・実現したいこと
書籍「たった1日で基本が身につくRuby on Rails」を読みながらRuby on Railsを学んでいる初学者です。
ruby/railsは全てrbenvでインストールしてまとめて管理しようと思い、最初からHomebrewの環境構築を試みていました。
以下の3点は上手くインストールできました。
$ which ruby
/Users/ユーザ名/.rbenv/shims/ruby
$ which rails
/Users/ユーザ名/.rbenv/shims/rails
$ which gem
/Users/ユーザ名/.rbenv/shims/gem
しかし、書籍のアラート表示がうまくいきません。
app/assets/javascripts/users.coffee
ruby
1# Place all the behaviors and hooks related to the matching controller here. 2# All this logic will automatically be available in application.js. 3# You can use CoffeeScript in this file: http://coffeescript.org/ 4alert('Hello, world!');
問題としては「<%= javascript_include_tag 'users' %>」の1文を削除すればエラーは消えるのですが、そうするとusers.coffeeのアラート表示が出せなくなってしまい困っています。
発生している問題・エラーメッセージ
Sprockets::Rails::Helper::AssetNotPrecompiled in Users#index Showing /Users/ユーザー名/rails-app/app/views/users/index.html.erb where line #2 raised: Asset `users.js` was not declared to be precompiled in production. Declare links to your assets in `app/assets/config/manifest.js`. //= link users.js and restart your server -------------------------- Extracted source (around line #2): <%= stylesheet_link_tag 'users' %> <%= javascript_include_tag 'users' %> <div class='users-index'><%= @hello %></div>
ターミナル
ruby
1Started GET "/users/" for ::1 at 2020-03-21 23:45:35 +0900 2 (0.1ms) SELECT sqlite_version(*) 3Processing by UsersController#index as HTML 4 Rendering users/index.html.erb within layouts/application 5 Rendered users/index.html.erb within layouts/application (Duration: 71.7ms | Allocations: 13547) 6Completed 500 Internal Server Error in 80ms (ActiveRecord: 0.0ms | Allocations: 14733) 7 8 9 10ActionView::Template::Error (Asset `users.js` was not declared to be precompiled in production. 11Declare links to your assets in `app/assets/config/manifest.js`. 12 13 //= link users.js 14and restart your server): 15 1: <%= stylesheet_link_tag 'users' %> 16 2: <%= javascript_include_tag 'users' %> 17 3: 18 4: <div class='users-index'><%= @hello %></div> 19 20app/views/users/index.html.erb:2 21app/controllers/users_controller.rb:5:in `index'
該当のソースコード
app/views/users/index.html.erb
ruby
1<%= stylesheet_link_tag 'users' %> 2<%= javascript_include_tag 'users' %> 3 4<div class='users-index'><%= @hello %></div>
app/controller/users_controller.rb
ruby
1class UsersController < ApplicationController 2 def index 3 @hello ='Hello, world!' 4 5 render template: 'users/index' 6 end 7end 8
試したこと
エラーコードを見るとjavascript、webpacker、辺りに問題があるのではと思い、
app/views/users/index.html.erbのコードをincludeからpackへ変更しました。
<%= javascript_include_tag 'users' %> ↓ <%= javascript_pack_tag 'users' %>
再度rails sを行うと新たなエラーが発生したのでincludeに戻した状態で質問させてもらいました。
補足情報(FW/ツールのバージョンなど)
MacOS Catalina ver10.15.3
Ruby ver2.6.3
Rails ver6.0.2.1
VS Code ver1.42.1
書籍の環境
windows 10 Pro
Ruby ver2.4.1
Ruby on Rails ver5.1.2
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/22 14:00