質問編集履歴

2

変更しました

2015/10/24 11:13

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -38,20 +38,38 @@
38
38
 
39
39
 
40
40
 
41
- 参考のページにある以下のルート設定が足ません
41
+ 参考のページにあるルートは以下のとおになっており
42
+
43
+ 結果が少し違っているようです
42
44
 
43
45
  ```ここに言語を入力
44
46
 
47
+ Prefix Verb URI Pattern Controller#Action
48
+
45
49
  projects GET /projects(.:format) projects#index
50
+
51
+ POST /projects(.:format) projects#create
52
+
53
+ new_project GET /projects/new(.:format) projects#new
54
+
55
+ edit_project GET /projects/:id/edit(.:format) projects#edit
56
+
57
+ project GET /projects/:id(.:format) projects#show
58
+
59
+ PATCH /projects/:id(.:format) projects#update
60
+
61
+ PUT /projects/:id(.:format) projects#update
62
+
63
+ DELETE /projects/:id(.:format) projects#destroy
46
64
 
47
65
  ```
48
66
 
49
67
 
50
68
 
69
+ 原因がわからないのですがなぜこのような結果になっているのか
70
+
51
- なぜでしょうか?
71
+ 教えて頂けますでしょうか?
52
72
 
53
73
 
54
74
 
55
- 初歩的な質問で申し訳ございませんが
56
-
57
75
  どうぞよろしくお願いします

1

修正しました

2015/10/24 11:13

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -40,7 +40,11 @@
40
40
 
41
41
  参考のページにある以下のルート設定が足りません
42
42
 
43
+ ```ここに言語を入力
44
+
43
45
  projects GET /projects(.:format) projects#index
46
+
47
+ ```
44
48
 
45
49
 
46
50