検索フォームの作成中に問題に直面しています。次のエラーが表示されます。
undefined method `model_name' for NilClass:Class
これは私のビューファイルです:
"日付ピッカー" %>これは私のclients_controller.rbです:
class ClientsController < ApplicationController
def newClients
end
end
そして、これは私のモデル client.rb です:
class Client < ActiveRecord::Base
# attr_accessible :title, :body
end
パラメータの使用に混乱していform_for
ます。form_for
パラメータを使用する方法と理由を簡単に説明できる人はいますか?
編集 1
コントローラーを次のように変更しました
class ClientsController < ApplicationController
def search
redirect_to root_path
end
end
送信ボタンをクリックすると、エラーが表示されます
No route matches [GET] "/search"