gpt4 book ai didi

ruby-on-rails - 使用 AASM 调用状态更改方法

转载 作者:太空宇宙 更新时间:2023-11-03 18:02:39 25 4
gpt4 key购买 nike

如何在 AASM 中调用状态更改方法?

我想在以下模型中状态转换为付费时调用 update_foo:

class Foo < ActiveRecord::Base
include AASM

# State Machine
aasm_initial_state :incomplete
aasm_state :incomplete
aasm_state :paid

aasm_event :pay do
transitions :from => :incomplete, :to => :paid
end

def update_foo
...
end
end

最佳答案

没关系 - 想通了:

aasm_state :paid, :enter => :update_foo

关于ruby-on-rails - 使用 AASM 调用状态更改方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/250685/

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