回答編集履歴

1

attr_accessorを追加

2018/01/26 13:21

投稿

h_daido
h_daido

スコア824

test CHANGED
@@ -56,4 +56,24 @@
56
56
 
57
57
 
58
58
 
59
+ comment.rb
60
+
61
+ ```ruby
62
+
63
+ class User < ActiveRecord::Base
64
+
65
+ # 以下を追加
66
+
67
+ attr_accessor : reply_content
68
+
69
+ end
70
+
71
+ ```
72
+
73
+
74
+
75
+
76
+
59
- その他、form_tagを使うなどあります。
77
+ その他、form_tagやnested_attributesを使うなどあります。
78
+
79
+ リファクタリングできれば、本当はそっちのほうがいいかもしれませんが、改修箇所が多くなってしまい面倒ですね。。。