我使用 mongoid 时,有个 type 为 string 的字段设置值后要更新为空,可是怎么操作都是前一次设置的值,这是为什么啊?
贴model字段定义和action操作
model
action
#1 楼 @dddd1919
include Mongoid::Document field :name, :type => String field :column, :type => String, default: "" validates :name, :column, presence: true validates_uniqueness_of :name belongs_to :user end
每次更新时我按下面进行操作,如果@columns不为空操作都正常,我清空的话@columns设为""就无法保存 @custom_table = user.custom_table.find_by(:name => @name) @custom_table.column = @columns user.custom_table << @custom_table
validates :name, :column, presence: true column 当然不能设为 ""
validates :name, :column, presence: true
""
#3 楼 @HungYuHei 哦,非常感谢二位
如果遇到 model 相关数据错误问题,在最后puts @custom_table.errors.messages一定会有错误提示信息。 再有 @custom_table.column = @columns 后应该加上 ·@custom_table.save
puts @custom_table.errors.messages
@custom_table.column = @columns
@custom_table.save
#5 楼 @dddd1919 好的,谢谢