LoginSignup
0
0

More than 5 years have passed since last update.

私も画像が投稿できるWebアプリを作りたい。その4(最後)

Last updated at Posted at 2019-02-24

1.ページに画像を投稿できるボタンを作るぞ。

要約 : newとeditのhtml.erbに↓を書く

app/views/posts/new.html.erbと
app/views/posts/edit.html.erbの
「form」の中に
↓を書く。


 <%= form.label :写真をアップするぞ %>
          ①
 <%= form.file_field :image %>
             ②

①「何をするのか名前を書いてあげる」と親切
②ページを見ると、写真をアップする画面になってます。

showは詳細画面

app/views/posts/show.html.erb
<%= image_tag, @post.image.url %>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0