RailsでGenerateしたらArgumentErrorで怒られた話
ルー大柴みたい
Railsチュートリアルも完走したし、オリジナルWebアプリ作るぞーと意気込んでGenerateしてみたところ、
ArgumentErrorと怒られたのでその備忘録です。
$ rails generate controller Companys show
Traceback (most recent call last):
58: from bin/rails:4:in `<main>'
〜〜省略〜〜
1: from /Library/Ruby/Gems/2.6.0/gems/actionpack-5.1.6/lib/action_dispatch/routing/mapper.rb
:307: in `check_controller_and_action'
/Library/Ruby/Gems/2.6.0/gems/actionpack-5.1.6/lib/action_dispatch/routing/mapper.rb
:327:in `check_part': Missing :controller key on routes definition, please check your routes.
(ArgumentError)
ArgumentError
とは
メソッドの引数が正しくない時や足りない時に発生するエラーです。
wrong number of arguments (given 0, expected 1+) というエラーメッセージが表示されています。
これは 引数の数が間違っています(現状0個です、正常な引数の数は1個以上です) という意味です。
つまり form_for のメソッドの引数が足りないために起こっているエラーだということが分かります。メソッドのリファレンス(http://railsdoc.com/)を見ながら、正しい引数が設定されいるかを確認し修正すると解決できることが多いです。
なるほど、ArgumentErrorは引数のエラーなんですね
そしてエラー文を読み込むのが大事と。
エラーメッセージに立ち返る
Missing :controller key on routes definition, please check your routes. (ArgumentError)
「routes上にあるコントローラーのキーが未定義ですので、routesを確認してね。」
Missing :controller key on routes definition, please check your routes. (ArgumentError)
「routes上にあるコントローラーのキーが未定義ですので、routesを確認してね。」
なんかよくわからんけど、please check your routes.
って言われたし仕方ねえ確認してやるか。
Rails.application.routes.draw do
root 'static_pages#home'
get '' # <= 何これ?
end
とりあえず削除してみて、もう一度generateしてみる
$ rails generate controller Companys show
create app/controllers/companys_controller.rb
route get 'companys/show'
invoke erb
create app/views/companys
create app/views/companys/show.html.erb
invoke test_unit
create test/controllers/companys_controller_test.rb
invoke helper
create app/helpers/companys_helper.rb
invoke test_unit
invoke assets
invoke coffee
create app/assets/javascripts/companys.coffee
invoke scss
create app/assets/stylesheets/companys.scss
上手く行った!!!
結論:作業途中のコードを放置するのはやめよう
そう心に誓いました。
Author And Source
この問題について(RailsでGenerateしたらArgumentErrorで怒られた話), 我々は、より多くの情報をここで見つけました https://qiita.com/yoshikouki/items/e4689f8845022d80f1c0著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .