gpt4 book ai didi

ruby-on-rails - 如何增加对象属性的值?

转载 作者:行者123 更新时间:2023-12-04 05:20:51 24 4
gpt4 key购买 nike

如何增加“”属性?

def newweek
current_user.userprofile.week += 1
respond_to do |format|
format.html { redirect_to :action => "index"}
end
end

初始值为 0 .每次 新周运行时,一周应该增加 1 .

可惜每次 新周刊 运行,该值保持为 1 .我该如何解决?

编辑
class NewWeekToUserprofile < ActiveRecord::Migration
def change
add_column :userprofiles, :week, :integer, :default => 0
end
end

最佳答案

您可以使用 .increment方法。

current_user.userprofile.increment :week

关于ruby-on-rails - 如何增加对象属性的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13715136/

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