form_withなどを使ってデータを新しく作ったり、更新したりしたいのですがその仕組みがいまいちわかりません。パラメーターの理解が曖昧なのかと思います。
下記のURLで編集画面があった場合、updateは以下のようにかけると思います(著書から抜粋している)。
このupdateアクションにある二つのparamsはどこからデータを受け取っているのですか?僕の予想だと1つめは下記のURLのentries/10/の10の部分、二つ目はentries/の部分でしょうか?複数と単数で異なる気がするのですが、どなたか説明していただけると幸いです。また二つ目のparamsの中身はidじゃいけないのでしょうか?
http://localhost:3001/entries/10/edit
def update @entry = current_member.entries.find.(params[:id]) @entry.assign_attributes(params[:entry]) if @entry.save 省略 end
edit.html
<% @page_title = "ブログ記事の編集" %> <h1><%= @page_title %></h1> <div class="toolbar"><%= link_to "記事の表示に戻る", @entry %></div> <%= form_for @entry do |form| %> <%= render "form", form: form %> <div><%= form.submit %></div> <% end %>
edit.htmlのrender先の_form.html
<%= render "shared/errors", obj: @entry %> <table class="attr"> <tr> <th width="80"><%= form.label :title %></th> <td><%= form.text_field :title, size: 50 %></td> </tr> <tr> <th><%= form.label :body %></th> <td><%= form.text_area :body, rows: 10, cols: 45 %></td> </tr> <tr> <th><%= form.label :posted_at, for: "entry_posted_at_1i" %></th> <td><%= form.datetime_select :posted_at, start_year: 2000, end_year: Time.current.year + 1, use_month_numbers: true %></td> </tr> <tr> <th><%= form.label :status %></th> <td><%= form.select :status, Entry.status_options %></td> </tr> </table>
routes
Prefix Verb URI Pattern Controller#Action entries_index GET /entries/index(.:format) entries#index entries_show GET /entries/show(.:format) entries#show entries_new GET /entries/new(.:format) entries#new entries_edit GET /entries/edit(.:format) entries#edit passwords_edit GET /passwords/edit(.:format) passwords#edit accounts_show GET /accounts/show(.:format) accounts#show accounts_edit GET /accounts/edit(.:format) accounts#edit top_index GET /top/index(.:format) top#index search_members GET /members/search(.:format) members#search member_entries GET /members/:member_id/entries(.:format) entries#index members GET /members(.:format) members#index POST /members(.:format) members#create new_member GET /members/new(.:format) members#new edit_member GET /members/:id/edit(.:format) members#edit member GET /members/:id(.:format) members#show PATCH /members/:id(.:format) members#update PUT /members/:id(.:format) members#update DELETE /members/:id(.:format) members#destroy root GET / top#index about GET /about(.:format) top#about session DELETE /session(.:format) sessions#destroy POST /session(.:format) sessions#create edit_account GET /account/edit(.:format) accounts#edit account GET /account(.:format) accounts#show PATCH /account(.:format) accounts#update PUT /account(.:format) accounts#update edit_password GET /password/edit(.:format) passwords#edit password GET /password(.:format) passwords#show PATCH /password(.:format) passwords#update PUT /password(.:format) passwords#update articles GET /articles(.:format) articles#index POST /articles(.:format) articles#create new_article GET /articles/new(.:format) articles#new edit_article GET /articles/:id/edit(.:format) articles#edit article GET /articles/:id(.:format) articles#show PATCH /articles/:id(.:format) articles#update PUT /articles/:id(.:format) articles#update DELETE /articles/:id(.:format) articles#destroy entries GET /entries(.:format) entries#index POST /entries(.:format) entries#create new_entry GET /entries/new(.:format) entries#new edit_entry GET /entries/:id/edit(.:format) entries#edit entry GET /entries/:id(.:format) entries#show PATCH /entries/:id(.:format) entries#update PUT /entries/:id(.:format) entries#update DELETE /entries/:id(.:format) entries#destroy
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/17 12:32
2019/12/17 12:38
2019/12/17 12:43