Dieser Artikel verwendet Ruby 2.6.5, das unter macOS Catalina 10.15.6 installiert ist.
--model:
gefolgt von __ einer Modellklasseninstanz __.
--Erstellen Sie ein Textfeld mit f.text_field
.
<%= form_with model: @book, local: true do |f| %>
<%= f.text_field :keyword, placeholder: "keyword", class: "search-input"%>
<%= f.submit "search", class: "search-btn" %>
<% end %>
--Geben Sie den __informationszielpfad __ nach url:
ein.
<%= form_with url: search_path, local: true do |f| %>
<%= f.text_field :keyword, placeholder: "keyword", class: "search-input"%>
<%= f.submit "search", class: "search-btn" %>
<% end %>
<%= form_with model: [@post, @comment] do |f| %>
<%= f.text_field :comment%>
<%= f.submit %>
<% end %>
https://pikawaka.com/rails/form_with https://qiita.com/hmmrjn/items/24f3b8eade206ace17e2
Recommended Posts