我首先运行脚手架命令,例如,
rails生成脚手架用户
现在,我去了app / models / user.rb并添加了一堆字段
我想要的是现在运行一个命令,在app / views / users /中重新生成视图文件,这样_form.html.erb现在包含我上面添加的字段的HTML.
谢谢,
最佳答案 一个想法是使用
formtastic宝石.
然后你的表单看起来像这样:
<%= semantic_form_for @user do |f| %>
<%= f.inputs %>
<%= f.actions %>
<% end %>
此表单代码段的工作原理如下.
This renders a set of inputs (one for most columns in the database table, and one for each ActiveRecord belongs_to-association), followed by default action buttons (an input submit button).