質問編集履歴

1

コードの追加

2016/03/25 01:53

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -19,3 +19,59 @@
19
19
  何かコマンドを打ち忘れ、データが反映されていないのでしょうか?
20
20
 
21
21
  回答お願いします。
22
+
23
+
24
+
25
+ routes.rbは
26
+
27
+ Rails.application.routes.draw do
28
+
29
+
30
+
31
+ devise_for :users
32
+
33
+ resources :users, only: [:index, :show, :edit, :update]
34
+
35
+ resources :notes, only: [:show, :create, :edit, :update, :destroy]
36
+
37
+
38
+
39
+ get'/top' => 'home#top'
40
+
41
+
42
+
43
+ get'/connection' => 'home#connection'
44
+
45
+ get'/notes/new' => 'notes#new'
46
+
47
+ post'/notes' =>'notes#create'
48
+
49
+ get'/notes' =>'notes#index'
50
+
51
+ get'/show' =>"notes#show"
52
+
53
+ get'/edit' =>'notes#edit'
54
+
55
+ patch'/notes/:id' =>"notes#update",as:'update_note'
56
+
57
+ delete'/notes/:id' =>"notes#destroy",as:'destroy_note'
58
+
59
+
60
+
61
+ post '/like/:note_id' => 'likes#like', as: 'like'
62
+
63
+ delete '/unlike/:note_id' => 'likes#unlike', as: 'unlike'
64
+
65
+
66
+
67
+ root 'home#top'
68
+
69
+ get'/about' => 'home#about'
70
+
71
+ end
72
+
73
+ のようになっています。
74
+
75
+ idはshowである、のように記述していないのでは?と思って困っています。
76
+
77
+ お願いいたします。