回答編集履歴

1

コードの編集追記

2020/03/23 07:48

投稿

harabou
harabou

スコア5

test CHANGED
@@ -92,6 +92,40 @@
92
92
 
93
93
  rails db:setup
94
94
 
95
+ ```UsersController
96
+
97
+ def update
98
+
99
+ if currrent_user.update(user_params)
100
+
101
+ redirect_to root_path
102
+
103
+ else
104
+
105
+ render :edit
106
+
107
+ end
108
+
109
+ end
110
+
111
+ ```
112
+
113
+ 上記のcurrent、rが一つ多いので削除
114
+
115
+ ```haml
116
+
117
+ = form_with model: @user, url: user_registration_path, local: true, method: :post do |f|
118
+
119
+ ```
120
+
121
+
122
+
123
+ ```haml
124
+
125
+ = form_with model: current_user, url: user_path, local: true do |f|
126
+
127
+ ```
128
+
95
129
 
96
130
 
97
131
  上記で正常に動くようになりました。今回一番の失敗は同じ名前のアプリを作ってしてしまい、前回作ったアプリのDBが今回のアプリだと勘違いしてしまった事にあります。