You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<%= form_with(model: idea, local: true) do |form| %><% if idea.errors.any? %><divid="error_explanation"><h2><%=pluralize(idea.errors.count,"error")%> prohibited this idea from being saved:</h2><ul><%idea.errors.full_messages.eachdo |message| %><li><%=message%></li><%end%></ul></div><%end%><divclass="field"><%=form.label:neme%><%=form.text_field:neme%></div><divclass="field"><%=form.label:description%><%=form.text_area:description%></div><divclass="field"><%=form.label:picture%><%=form.text_field:picture%></div><divclass="actions"><%=form.submit%></div><%end%>
なので、ドキュメントのコード例をRails 5.2.0の仕様に合わせておいた方がいいと思いました。
The text was updated successfully, but these errors were encountered:
http://railsgirls.jp/app の「4. 写真アップロード機能を追加する」では、
<%= form.text_field :picture, id: :idea_picture %>
を書き換えるように指示が出てきますが、Rails 5.2.0で作業を進めると、_form.html.erb
は以下のような出力になり、, id: :idea_picture
が出てきません。なので、ドキュメントのコード例をRails 5.2.0の仕様に合わせておいた方がいいと思いました。
The text was updated successfully, but these errors were encountered: