我有以下代码,我想更新数据库中的特定对象。但由于某种原因,此功能将无法显示。根据我回来的日志报告没有什么不对。代码块之外的信息可以正常返回。
<% form_for (@person), :url => {:controller => "persons", :action => "update" } do |f| %>
<%= f.label :name, "Name" %><br/>
<%= f.text_field :name %>
<%= f.label :score, "Score" %>
<%= f.text_field :score %>
<%= f.submit("Update") %>
<% end %>
答案 0 :(得分:2)
你应该使用<%= form_for ...
而不是<% form_for ...
(这一切都在等号中)