質問編集履歴

2

修正

2020/11/06 05:26

投稿

moto12
moto12

スコア15

test CHANGED
File without changes
test CHANGED
@@ -407,45 +407,3 @@
407
407
  comment_agree DELETE /comments/:comment_id/agrees/:id(.:format) agrees#destroy
408
408
 
409
409
  ```
410
-
411
-
412
-
413
- 自己解決できたので載せておきます。
414
-
415
-
416
-
417
- ```Ruby
418
-
419
- 【new.html.erb(共感ボタンのあるファイル)】
420
-
421
- 下記の2行目をbefore→afterに変更したところうまくいきました。
422
-
423
-
424
-
425
- (before)
426
-
427
- <%= link_to comment_agree_path(comment, @agree), method: :delete do %>
428
-
429
-
430
-
431
- (after)
432
-
433
- <%= link_to comment_agree_path(comment, comment.agrees), method: :delete do %>
434
-
435
- ```
436
-
437
-
438
-
439
- ### 試したこと
440
-
441
-
442
-
443
- ここに問題に対して試したことを記載してください。
444
-
445
-
446
-
447
- ### 補足情報(FW/ツールのバージョンなど)
448
-
449
-
450
-
451
- ここにより詳細な情報を記載してください。

1

自己解決

2020/11/06 05:26

投稿

moto12
moto12

スコア15

test CHANGED
File without changes
test CHANGED
@@ -408,13 +408,31 @@
408
408
 
409
409
  ```
410
410
 
411
+
412
+
413
+ 自己解決できたので載せておきます。
414
+
415
+
416
+
411
- ```Ruby
417
+ ```Ruby
418
+
412
-
419
+ 【new.html.erb(共感ボタンのあるファイル)】
420
+
413
-
421
+ 下記の2行目をbefore→afterに変更したところうまくいきました。
422
+
423
+
424
+
414
-
425
+ (before)
426
+
427
+ <%= link_to comment_agree_path(comment, @agree), method: :delete do %>
428
+
429
+
430
+
431
+ (after)
432
+
433
+ <%= link_to comment_agree_path(comment, comment.agrees), method: :delete do %>
434
+
415
- ```
435
+ ```
416
-
417
-
418
436
 
419
437
 
420
438