rails update_attributes

时间:2012-01-07 10:08:04

标签: authentication ruby-on-rails-3.1 update-attributes

我的用户模型有

validates :password, :presence => true,
                                :confirmation => true,
                                :length => {:within => 6..40}

我对用户控制器的更新操作是

def update
        @user = User.find(params[:id])
        if @user.update_attributes(params[:user])
            flash[:success] = "Profile updated."
            redirect_to @user
        else
            @title = "Edit user"
            render 'edit'
        end
    end

我的编辑视图是

<%= form_for(@user) do |f| %>
<%= render 'shared/error_messages', :object => @user.errors%>
<div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
</div>
<div class="field">
    <%= f.label :email %><br />
    <%= f.text_field :email %>
</div>
<div class="field">
    <%= f.label :password %> <br />
    <%= f.password_field :password %>
</div>
<div class="field">
    <%= f.label :password_confirmation, "Confirmation" %> <br />
    <%= f.password_field :password_confirmation %>
</div>
<div class="actions">
    <%= f.submit "Update" %>
</div>

问题是我只想更新模型的特定属性,而不是每次都输入密码。如果我没有输入密码(和确认),我会收到验证错误)

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

尝试下一个验证规则

  

验证:密码,:presence =&gt;是的,:if =&gt; lambda {new_record? ||   !password.nil? }

答案 1 :(得分:0)

您可以使用attr_protectedupdate_attributes中排除某些字段。请参阅doc。更好的方法是使用attr_accessible将可以通过批量分配更新的属性列入白名单。