gpt4 book ai didi

ruby-on-rails - ruby rails : before_save fields to lowercase

转载 作者:IT王子 更新时间:2023-10-29 06:18:39 26 4
gpt4 key购买 nike

我试图在将字段保存到数据库之前将表单中的字段更改为小写。这是我的代码,但数据库的输出仍然是大写的,为什么代码不起作用?

class Transaction < ActiveRecord::Base
validates :name, presence: true
validates :amount, presence: true, numericality: true
before_save :downcase_fields

def downcase_fields
self.name.downcase
end
end

最佳答案

downcase 返回字符串的副本,不修改字符串本身。使用 downcase! 代替:

def downcase_fields
self.name.downcase!
end

参见 documentation了解更多详情。

关于ruby-on-rails - ruby rails : before_save fields to lowercase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23856307/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com