質問編集履歴
2
エラーの詳細
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,6 +5,10 @@
|
|
5
5
|
### 発生したエラー
|
6
6
|
|
7
7
|
```
|
8
|
+
|
9
|
+
ActionController::UrlGenerationError in Applies#index
|
10
|
+
|
11
|
+
|
8
12
|
|
9
13
|
No route matches {:action=>"show", :apply_id=>1, :circle_id=>#<Circle id: 1, name: "テニス", created_at: "2021-04-06 12:51:55", updated_at: "2021-04-06 12:51:55", profile: nil, time: nil, place: nil, homepage: nil, admin: false>, :controller=>"circle_users", :user_id=>1}, missing required keys: [:id]
|
10
14
|
|
1
詳細な情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -150,6 +150,42 @@
|
|
150
150
|
|
151
151
|
</div>
|
152
152
|
|
153
|
+
|
154
|
+
|
155
|
+
```ここに言語を入力
|
156
|
+
|
157
|
+
コード
|
158
|
+
|
159
|
+
```
|
160
|
+
|
161
|
+
routeの結果
|
162
|
+
|
163
|
+
circles#destroy
|
164
|
+
|
165
|
+
circle_applies GET /circles/:circle_id/applies(.:format) applies#index
|
166
|
+
|
167
|
+
POST /circles/:circle_id/applies(.:format) applies#create
|
168
|
+
|
169
|
+
circle_apply DELETE /circles/:circle_id/applies/:id(.:format) applies#destroy
|
170
|
+
|
171
|
+
circle_circle_users GET /circles/:circle_id/circle_users(.:format) circle_users#index
|
172
|
+
|
173
|
+
POST /circles/:circle_id/circle_users(.:format) circle_users#create
|
174
|
+
|
175
|
+
new_circle_circle_user GET /circles/:circle_id/circle_users/new(.:format) circle_users#new
|
176
|
+
|
177
|
+
edit_circle_circle_user GET /circles/:circle_id/circle_users/:id/edit(.:format) circle_users#edit
|
178
|
+
|
179
|
+
circle_circle_user GET /circles/:circle_id/circle_users/:id(.:format) circle_users#show
|
180
|
+
|
181
|
+
PATCH /circles/:circle_id/circle_users/:id(.:format) circle_users#update
|
182
|
+
|
183
|
+
PUT /circles/:circle_id/circle_users/:id(.:format) circle_users#update
|
184
|
+
|
185
|
+
DELETE /circles/:circle_id/circle_users/:id(.:format) circle_users#destroy
|
186
|
+
|
187
|
+
GET /circles(.:format)
|
188
|
+
|
153
189
|
```
|
154
190
|
|
155
191
|
> 引用https://qiita.com/tttaamm12/items/fbc2a3723ce3077adcbc#4%E7%94%B3%E8%AB%8B%E3%82%92%E5%8D%B4%E4%B8%8B%E3%81%99%E3%82%8B%E5%A0%B4%E5%90%88%E3%81%AF%E5%90%A6%E8%AA%8D%E3%83%9C%E3%82%BF%E3%83%B3%E3%82%92%E6%8A%BC%E3%81%99%E7%94%B3%E8%AB%8B%E5%BE%85%E3%81%A1%E3%83%AA%E3%82%B9%E3%83%88%E3%81%8B%E3%82%89%E6%B6%88%E5%8E%BB%E3%81%95%E3%82%8C%E3%82%8B
|