回答編集履歴
1
文章の修正
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
-
とのことでしたので、2字以上のキーワードを入力したところ
|
11
|
+
とのことでしたので、2字以上のキーワードを入力したところ、
|
12
12
|
|
13
13
|
|
14
14
|
|
@@ -17,3 +17,39 @@
|
|
17
17
|
|
18
18
|
|
19
19
|
のエラーは消えました。
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
その代わりに、
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
NoMethodError in Goods#search
|
30
|
+
|
31
|
+
Showing /home/ec2-user/environment/rakutensearch/app/views/goods/_good_list.html.erb where line #4 raised:
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
undefined method `image_url' for #<RakutenWebService::Ichiba::Item:0x00007f6c84ad82c8>
|
36
|
+
|
37
|
+
Did you mean? image_flag
|
38
|
+
|
39
|
+
Extracted source (around line #4):
|
40
|
+
|
41
|
+
2 <% @goods.each do |good| %>
|
42
|
+
|
43
|
+
3 <div class="list">
|
44
|
+
|
45
|
+
4 <% if good.image_url %>
|
46
|
+
|
47
|
+
5 <%= link_to (image_tag(good.image_url, style: "width: 70px;height: 100px;display:
|
48
|
+
|
49
|
+
inline-block;")), good.url %>
|
50
|
+
|
51
|
+
6 <% end %>
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
というエラーが発生しました。
|