所以我有一個上有可編輯的字段...簡單的更新的對接負荷編輯頁面... @patient.update_attributes(params[:patient])
...一切都很好,除了....領域的update_attributes調整
我得趕緊一個字段這些20,我需要調整有點它已經準備好爲DB之前,它似乎我要不要做
兩趟
@patient.update_attributes(params[:patient])
@patient.update_attribute(:field=>'blah')
或單獨設置他們都
patient.update_attributes(:field1=>'asdf', :field2=>'sdfg',:field3=>'dfgh', etc...)
我缺少一個辦法做到這一點是一舉?