2017-11-03 3 views

답변

1

모델 콜백을 사용하여이를 수행 할 수 있습니다.

class Model < ApplicationRecord 
     before_save :set_params2, if: self.param1? 

     private 

     def set_param2 
     self.param2 = true 
     end 
    end