0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Rails 記事投稿画面

Last updated at Posted at 2021-07-10

##記事投稿のビュー

posts/new.html.erb

 <%= form_tag("/posts/create") do %>・・・・1
 <% @post.errors.full_messages.each do |message| %>・・・・2
<div class="form-error">
 <%= message %>・・・2
 </div>
 <% end %>
 <textarea name="content"><%= @post.content %></textarea>・・・1
 <input type="submit" value="投稿">・・・1
<% end %>

##解説
・・・1 投稿ボタンを押すと、textareaに入力されているデータがURL"/posts/createに送信されます。
また投稿に失敗した時(字数制限を超えた時など)は@post.contentと書いておくことにより投稿前のものが初期値として、残すことができます。
・・・2 配列@post.errors.full_messagesから要素を1個ずつ抜き出して、messageに代入しています。そのmessageを<%= message %>で表示しています。
##記事投稿のコントローラ

posts_controller.rb
 def create
    @post = Post.new(content: params[:content])・・・1
    @post.save・・・2
    redirect_to('/posts/index')・・・3

##解説
・・・1name属性で指定したフォームに入力したデータであるPostインスタンスを作成し、変数@postに代入しています
・・・2作成したPostインスタンスをPostテーブルに保存しています
・・・3createアクションに対応するビューがないのでURL"/posts/index"に転送しています。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?