質問編集履歴
2
form追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -177,6 +177,35 @@
|
|
177
177
|
</main>
|
178
178
|
```
|
179
179
|
|
180
|
+
```ruby
|
181
|
+
[app>views>designs>_form.html.erb]
|
182
|
+
<%= form_with model: @design, url: url, method: method, id: 'new_post', local: true do |f| %>
|
183
|
+
|
184
|
+
<div class="field">
|
185
|
+
<%= f.label :title, "タイトル" %><br />
|
186
|
+
<%= f.text_field :title, id:"design_title" %>
|
187
|
+
</div>
|
188
|
+
|
189
|
+
<div class="field">
|
190
|
+
<%= f.label :file_name, "ファイル名" %><br />
|
191
|
+
<%= f.text_area :file_name, class: :form__text, id:"design_file_name" %>
|
192
|
+
</div>
|
193
|
+
|
194
|
+
<div class="field">
|
195
|
+
<%= f.label :image, "画像" %><br />
|
196
|
+
<%= f.file_field :image, id:"design_image" %>
|
197
|
+
</div>
|
198
|
+
|
199
|
+
<div class="tag-field">
|
200
|
+
<%= f.text_field :tag_name, placeholder: 'add tags' %>
|
201
|
+
</div>
|
202
|
+
|
203
|
+
<div class="actions">
|
204
|
+
<%= f.submit "保存する", class: :form__btn %>
|
205
|
+
</div>
|
206
|
+
<% end %>
|
207
|
+
```
|
208
|
+
|
180
209
|
### 試したこと
|
181
210
|
|
182
211
|
requireを削除すると正常に表示されるのですが
|
1
modelとviewsの表記誤っておりました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -150,7 +150,7 @@
|
|
150
150
|
end
|
151
151
|
```
|
152
152
|
```ruby
|
153
|
-
[app>
|
153
|
+
[app>views>show.html.erb]
|
154
154
|
|
155
155
|
<main class="main">
|
156
156
|
<div class="inner">
|