2011-03-28 54 views

回答

7
class Person 
    before_validation :strip_blanks 

    protected 

    def strip_blanks 
    self.name = self.name.strip 
    end 
end 

這個片段的來源包含了爲什麼這是不是默認的Rails行爲的一些討論。 http://www.ruby-forum.com/topic/166426

相關問題