質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,10 +50,28 @@
|
|
50
50
|
|
51
51
|
```
|
52
52
|
|
53
|
+
image.rb (model)
|
54
|
+
|
55
|
+
```
|
56
|
+
|
57
|
+
accepts_nested_attributes_for :images, allow_destroy: true,reject_if: proc { |attributes| attributes['image'].blank? }
|
58
|
+
|
59
|
+
```
|
60
|
+
|
61
|
+
|
62
|
+
|
53
63
|
|
54
64
|
|
55
65
|
errorsの中身はitemを欲してます。
|
56
66
|
|
57
|
-
しかし、item自体は他のmodelなのでどうすることもできません。
|
58
67
|
|
68
|
+
|
69
|
+
追記
|
70
|
+
|
59
|
-
|
71
|
+
確かに少し、わかりにくかったですね。
|
72
|
+
|
73
|
+
itemが親、imageが子の関係(has_many :images)
|
74
|
+
|
75
|
+
itemを保存する時に、imageがないとダメなtestをしたかったんです。
|
76
|
+
|
77
|
+
おそらく、validationもうまくいってないと思われるのでその辺りも教えていただけると・・。
|