質問編集履歴
5
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
4
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
Ruby on railsで、写真投稿アプリを作っています。
|
4
4
|
|
5
5
|
|
6
|
+
|
7
|
+
その中で、部分テンプレート _prototype.html.erb
|
8
|
+
|
9
|
+
を表示させたいのですが、エラーが表示されます。
|
6
10
|
|
7
11
|
|
8
12
|
|
3
エラーをスクリーンショットで確認できるように編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,9 +14,11 @@
|
|
14
14
|
|
15
15
|
```
|
16
16
|
|
17
|
-
![
|
17
|
+
![イメージ説明](f31933a42db3dccb06cd13e0b9d26f00.jpeg)
|
18
18
|
|
19
|
-
|
19
|
+
[リンク内容](https://gyazo.com/e00ff514ae3353cfdac044ba483bee8b)
|
20
|
+
|
21
|
+
|
20
22
|
|
21
23
|
|
22
24
|
|
2
コードの表示形式の変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
【Ruby
|
1
|
+
【Ruby】 NoMethodErrorで困っています。。
|
test
CHANGED
@@ -38,6 +38,8 @@
|
|
38
38
|
|
39
39
|
### _prototype.html.erb
|
40
40
|
|
41
|
+
```html
|
42
|
+
|
41
43
|
<div class="card">
|
42
44
|
|
43
45
|
<%= image_tag prototype.image, class: 'card__img' if prototype.image.attached? %>
|
@@ -58,9 +60,17 @@
|
|
58
60
|
|
59
61
|
</div>
|
60
62
|
|
63
|
+
```
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
|
61
69
|
|
62
70
|
|
63
71
|
### /prototypes/index.html.erb
|
72
|
+
|
73
|
+
```html
|
64
74
|
|
65
75
|
<main class="main">
|
66
76
|
|
@@ -96,9 +106,15 @@
|
|
96
106
|
|
97
107
|
|
98
108
|
|
109
|
+
```
|
110
|
+
|
111
|
+
|
112
|
+
|
99
113
|
|
100
114
|
|
101
115
|
### prototypes_controller.rb
|
116
|
+
|
117
|
+
```ruby
|
102
118
|
|
103
119
|
class PrototypesController < ApplicationController
|
104
120
|
|
@@ -144,6 +160,10 @@
|
|
144
160
|
|
145
161
|
end
|
146
162
|
|
163
|
+
```
|
164
|
+
|
165
|
+
|
166
|
+
|
147
167
|
|
148
168
|
|
149
169
|
|
1
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Ruby NoMethodErrorの解消
|
1
|
+
【Ruby 】 NoMethodErrorの解消
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
### 前提・実現したいこと
|
1
|
+
rub### 前提・実現したいこと
|
2
2
|
|
3
3
|
Ruby on railsで、写真投稿アプリを作っています。
|
4
4
|
|