質問編集履歴

3

コメントのrails routesの結果の追記

2020/05/14 02:58

投稿

akaki
akaki

スコア15

test CHANGED
File without changes
test CHANGED
@@ -246,6 +246,16 @@
246
246
 
247
247
  このように、「cafeterium_comments_path」という、まったく身に覚えのないパスが定義されていないというエラーになってしまいます・・・。
248
248
 
249
+
250
+
251
+ ⬇︎rails routes の結果(コメントのpath)⬇︎
252
+
253
+ ```
254
+
255
+ cafeteria_comments POST /cafeterias/:cafeteria_id/comments(.:format) comments#create
256
+
257
+ ```
258
+
249
259
  ### 試したこと
250
260
 
251
261
 

2

form_withのurlを消した後のエラーについて追記しました。

2020/05/14 02:58

投稿

akaki
akaki

スコア15

test CHANGED
File without changes
test CHANGED
@@ -240,6 +240,12 @@
240
240
 
241
241
  ```
242
242
 
243
+ ⬇︎<さらに追記:form_withのurlを消した後のエラー>⬇︎
244
+
245
+ [リンク内容](https://i.gyazo.com/439bb493db1586b9b564c4f1cd2ace6c.png)
246
+
247
+ このように、「cafeterium_comments_path」という、まったく身に覚えのないパスが定義されていないというエラーになってしまいます・・・。
248
+
243
249
  ### 試したこと
244
250
 
245
251
 

1

routes.rbのコードを追加で記載しました。

2020/05/14 02:44

投稿

akaki
akaki

スコア15

test CHANGED
File without changes
test CHANGED
@@ -214,6 +214,32 @@
214
214
 
215
215
  ```
216
216
 
217
+
218
+
219
+ ⬇︎<追記:ルーティングコードの記載>⬇︎
220
+
221
+ ```routes
222
+
223
+ Rails.application.routes.draw do
224
+
225
+ devise_for :users
226
+
227
+ root to: "top#index"
228
+
229
+ resources :top, only: :index
230
+
231
+ resources :cafeterias do
232
+
233
+ resources :comments, only: :create
234
+
235
+ end
236
+
237
+ resources :users, only: [:show, :edit, :update]
238
+
239
+ end
240
+
241
+ ```
242
+
217
243
  ### 試したこと
218
244
 
219
245