ステップ方式を途中で保存されないようにする
ブログの投稿機能をつけるとして、投稿するのに設定が多いので、ページを分け、descriptionとimageをステップにいれ、3ステップ方式のフォームにしたいです。
routes.rbではこのようにcollection doを使用し設定をしました。
resources :notes do
collection do
get :description
get :images
end
end
しかし、notes_controllerで
def description
@note = Note.new
end
def images
@note = Note.new
end
としているので、ステップの途中でページごとに保存、作成されてしまいます。
def description
@note = Note.find(params[:id])
end
としても、Couldn't find Note with 'id'=
というエラーがでます。初心者です。よろしくお願いします。