Rails 模型:如何在 Rails 模型中使字段只读?

发布于 2024-10-27 22:03:20 字数 100 浏览 4 评论 0原文

我已经为表项定义了属性 is_first 。

在模型项目中,我想根据项目之前是否存在来设置此属性的值。
我不希望 is_first 属性可写。请建议我应该做什么?

I have defined attribute is_first for table items.

In model Item, i want to set value of this attribute based upon whether an item exits before or not.
I don't want is_first attribute to be writeable. Please suggest what should i do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀟灑尐姊 2024-11-03 22:03:20

您需要在模型文件中使用 attr_readonly

attr_readonly :is_first

you need to use attr_readonly in your model file:

attr_readonly :is_first
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文