gpt4 book ai didi

ruby-on-rails - 使 Rails 表列属性只读

转载 作者:行者123 更新时间:2023-12-03 15:57:42 26 4
gpt4 key购买 nike

使我的表格列只读的最佳方法是什么?禁用setter方法?该列是由postgres触发器设置的,所以我不想在应用程序级别设置它

最佳答案

您似乎在寻找 ActiveRecord::Base attr_readonly :

class Foo < ActiveRecord::Base
attr_readonly :bar
end

foo = Foo.create(bar: "first_value")
foo.bar
=> "first_value"
foo.update(bar: "second_value") #column `bar` ignored in SQL query
foo.bar
=> "first_value"

关于ruby-on-rails - 使 Rails 表列属性只读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37097708/

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