当我将一个属性更改为 false 时,model.save 不会

发布于 2024-12-01 10:09:30 字数 404 浏览 2 评论 0原文

我有一个模型投票。投票有一个属性 vote_type。在我的控制器中,我这样做

 @vote = Vote.fetch(1)
 logger.warn("current vote_type: #{@vote.vote_type}")
 @vote.vote_type = false 
 @vote.save

不会引发任何错误,但我在服务器中看到以下内容,

    Vote Columns (0.7ms)   SHOW FIELDS FROM `votes`
    current vote_type: true
    SQL (0.1ms)   BEGIN
    SQL (0.1ms)   ROLLBACK

我不知道为什么它会回滚。我做错了什么?

I have a model Vote. Vote has an attribute vote_type. In my controller I do this

 @vote = Vote.fetch(1)
 logger.warn("current vote_type: #{@vote.vote_type}")
 @vote.vote_type = false 
 @vote.save

This doesn't throw any error but I see the following in my server

    Vote Columns (0.7ms)   SHOW FIELDS FROM `votes`
    current vote_type: true
    SQL (0.1ms)   BEGIN
    SQL (0.1ms)   ROLLBACK

I have no idea why it is rolling back. What am i doing wrong?

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

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

发布评论

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

评论(2

千纸鹤带着心事 2024-12-08 10:09:30

如果该字段“没有值”(即 false),则删除必需的 => true 从原始迁移并重新创建该表/数据库(或创建一个删除所需设置的新迁移)。

If the field can 'not have a value' - which is what false is - then remove the required => true from the original migration and recreate that table/db (or create a new migration that removes the required setting).

老娘不死你永远是小三 2024-12-08 10:09:30

Rails 的一个常见问题是尝试对布尔值进行“validate_presence”。该验证使用 .blank?和 false.blank =>真的。因此,要验证布尔值是否存在,请使用:

validates :vote_type, :inclusion => {:in => [true, false]}

A common issue with Rails is trying to 'validate_presence' of a boolean. That validation uses .blank? and false.blank => true. Therefore, to validate the presence of a boolean, use:

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