我尝试过以下回调:
before_validation :comma_to_delimiter def comma_to_delimiter self.price.to_s.gsub(',','.').to_f end
但这不行.我希望用户能够输入任何他想要的分隔符 – 当前,当用户使用逗号而不是一个点时,应用程序会引发错误.
self.price.to_s.gsub(','.').to_f
只会返回更改,但是不会在回调中的任何地方!
self.price = self.price.to_s.gsub(','.').to_f # OR self.price.to_s.gsub!(','.').to_f
将持续对象内的更改.