2019/11/08 12:31 編集
取り消し
投稿2019/11/08 04:51
フォームを作り、名前(旅行名)、出国日、帰国日をデータとして保存できるようにしようとしているのですが、名前のみしか保存できません。
---+--------------------+----------------------------+----------------------------+---------------+-------------+ | id | name | created_at | updated_at | depature_date | return_date | +----+--------------------+----------------------------+----------------------------+---------------+-------------+ 04:35:38.940915 | NULL | NULL | | 32 | キューバ旅行 | 2019-11-08 04:37:27.026686 | 2019-11-08 04:37:27.026686 | NULL | NULL |
<div class="container"> <%=form_tag("/posts", method: :post) do %> <div class="form-style-6"> <h1>しおり新規作成</h1> <form> <input type="text" name="name" placeholder="旅行タイトル" /> <input type="date" name="depature_date" placeholder="出発日" /> <input type="date" name="return_date" placeholder="帰国日" /> <input type="submit" value="作成" /> </form> </div> <% end %> </div> </div>
class PostsController < ApplicationController def index @posts = Post.all end def create @post = Post.new(name: params[:name], depature_date: params[:depature_date], return_date: params[:return_date]) if @post.save redirect_to posts_path else render("posts/new") end end def new @post = Post.new if @post.save else end end def edit end def show end def update end end
回答1件
あなたの回答
tips
プレビュー