質問編集履歴
2
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|
1
ソースコード追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -16,9 +16,17 @@
|
|
16
16
|
|
17
17
|
### 該当のソースコード
|
18
18
|
|
19
|
-
|
19
|
+
class ArticlesController < ApplicationController
|
20
20
|
|
21
|
+
def new
|
22
|
+
end
|
23
|
+
def create
|
24
|
+
render plain: params[:article].inspect
|
25
|
+
raise params.inspect
|
26
|
+
end
|
27
|
+
end
|
21
28
|
|
29
|
+
|
22
30
|
### 試したこと
|
23
31
|
https://www.youtube.com/watch?v=fbLvUa2ImDs&index=6&list=PLLtm0VpE-z3NMFXMaLW6NqSVHqLLLAIRi
|
24
32
|
を参考にして取り組んでいます。
|