前提・実現したいこと
Railsチュートリアル2章の2.2.1ユーザーページを探検するで URL、/users/1、/users/1/editが書籍通りにやってもCouldn't find User with 'id'=1と表示され表示できません。
発生している問題・エラーメッセージ
Couldn't find User with 'id'=1
発生している問題・エラーメッセージ
Processing by UsersController#edit as HTML Parameters: {"id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
該当のソースコード
# Use callbacks to share common setup or constraints between actions. def set_user @user = User.find(params[:id]) end # Never trust parameters from the scary internet, only allow the white list through.
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。