前提・実現したいこと
Ruby On Rails の Form_for を使ってデータベースに保存しようとしています。しかし、submitボタンを押しても何も反応がありません。もしよければ間違っているところを教えてもらえると嬉しいです。
controller
def new @party_new = WelcomeParty.new end def create @party_new = WelcomeParty.new(set_circle) respond_to do |format| if @party_new.save format.html { render :date } format.json { render :show, status: :created, location: @party_new } else format.html { render :new } format.json { render json: @party_new.errors, status: :unprocessable_entity } end end end private def set_circle params.require(:welcome_party).permit(:name,:date,:place, :content, :fee, :belonging, :comment) end
html.erb
<%= form_for @party_new, url: welcome_parties_new_path do |f| %> <br> <%= f.label :name %> <%= f.text_field :name %> <br> <%= f.label :date %> <%= f.date_select :date %> <br> <%= f.label :place %> <%= f.text_field :place %> <br> <%= f.label :content %> <%= f.text_area :content %> <br> <%= f.label :fee %> <%= f.text_field :fee %> <br> <%= f.label :belonging %> <%= f.text_field :belonging %> <br> <%= f.label :comment %> <%= f.text_field :comment %> <div class="actions"> <%= f.submit %> </div> <% end %>
Routes
post 'welcome_parties/new', to:'dashboard#create'
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/13 07:51
2020/02/13 07:52
2020/02/13 07:52
2020/02/13 07:52
2020/02/13 07:53
2020/02/13 07:53
2020/02/13 07:56
2020/02/13 07:57
2020/02/13 07:57
2020/02/13 08:00
2020/02/13 08:01
2020/02/13 08:02
2020/02/13 08:04
2020/02/13 08:06
2020/02/13 08:06
2020/02/13 08:08
2020/02/13 08:11