質問編集履歴

1

実装している編集画面のコード追記(users/edit.html.erb)

2021/07/15 12:19

投稿

ro-ru_ke-to
ro-ru_ke-to

スコア0

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  # 前提・実現したいこと
2
2
 
3
- ユーザー情報の一つである「プロフィール文」の編集機能を実装したいのですが、updateアクション実行時にデータが更新されません。(Sequel Proに「profile」カラムが存在していることは確認済みです。)
3
+ ユーザー情報の一つである「プロフィール文」の編集機能を実装したいのですが、updateアクション実行時にデータが更新されません。htmlではform_withを使用しています。(Sequel Proに「profile」カラムが存在していることは確認済みです。)
4
4
 
5
5
  どなたかご回答頂けると幸いです。よろしくお願いします。
6
6
 
@@ -160,6 +160,32 @@
160
160
 
161
161
  ```
162
162
 
163
+ ```
164
+
165
+ [users/edit.html.erb]
166
+
167
+
168
+
169
+ <div class="user-edit">
170
+
171
+ <div class="edit-main">
172
+
173
+ <h2 class="user-edit-title">プロフィール変更</h2>
174
+
175
+ <%= form_with model:@user, local: true do |f| %>
176
+
177
+ <%=f.text_area :profile, class:"user-edit-content" %>
178
+
179
+ <%= f.submit "変更", class:"actions" %>
180
+
181
+ <% end %>
182
+
183
+ </div>
184
+
185
+ </div>
186
+
187
+ ```
188
+
163
189
 
164
190
 
165
191
  ### 試したこと