質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,6 +12,18 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
+
#作業手順
|
16
|
+
|
17
|
+
1,投稿機能の実装(new.html.haml)完了後に編集ページ(edit.html.haml)を作成。
|
18
|
+
|
19
|
+
2,items_controllerにset_itemの部分を記述。
|
20
|
+
|
21
|
+
3,作成したedit.html.hamlページへnew.html.hamlの内容をコピペし、ページへ遷移すると下記のエラーが発生。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
15
27
|
#エラー
|
16
28
|
|
17
29
|
app/views/items/edit.html.haml where line #19 raised:
|
@@ -20,6 +32,8 @@
|
|
20
32
|
|
21
33
|
undefined method `url' for "#<ActionDispatch::Http::UploadedFile:0x00007fd2eb425c50>":String
|
22
34
|
|
35
|
+
= image_tag image.src.url, data: { index: i }, width: "100", height: '100'
|
36
|
+
|
23
37
|
|
24
38
|
|
25
39
|
#コード
|