我有一个rails模板,在创建新模型时运行良好,但在编辑现有模型时有问题。
这是行为:
在edit
视图中,提交按钮无效。
如果我点击重新加载,再次呈现edit
视图后,该按钮工作正常,我可以向数据库提交任何更改。
以下是代码。
形式:
<%= form_for @client do |f| %>
# Don't Think the problem is inside the form since it works after the reload.
...
# Here is the button
<button type="submit" value="submit" class="btn btn-success btn-lg pull-right cms-button">
<i class="fa fa-check" aria-hidden="true"></i> Update Client
</button>
<% end %>
控制器:
def edit
@client = Client.find( params[:id] )
end
def update
@client = Client.find( params[:id] )
if @client.update( client_params )
flash[:notice] = "Client added succesfully"
redirect_to( :action => 'show' )
else
render( 'edit)' )
end
end
我必须在哪里进行更改才能使更新成功?