作者在 2016-11-30 09:31:24 发布以下内容
不查询数据记录,直接更改
Category.where(id: category_id).update_all(articles_count: articles_count)
不查询数据记录,直接更改
Category.where(id: category_id).update_all(articles_count: articles_count)
@category.update_column(:articles_count, articles_count)
或者@category.update_columns(articles_count: articles_count)
这两种方式效果是一样的