如何访问 datamapper 观察者中的旧状态值?

发布于 2024-09-10 04:20:05 字数 483 浏览 2 评论 0原文

我正在使用 dm-observer 来观察我的 dm 模型,并且我需要根据模型内的状态更改执行一些操作。我已经发现 @state 用于存储更新的状态值,但我无法弄清楚如何访问旧的状态值。在下面的示例中,我使用了“old_state”,但显然这不起作用。

class Adam
    include DataMapper::Resource

    property :id, Serial
    property :name, String
    property :state, Integer
end

class AdamObserver
    include DataMapper::Observer
    observe Adam

    before :update do
        if old_state == 1 && @state == 2
            #do something 
        end
    end
end 

I'm using dm-observer to observe my dm models, and I need to perform some actions based on state changes within the model. I've figured out that @state is used to store the updated state value, but I have not been able to figure out how to access the old state value. In the example below I've used "old_state", but obviously that does not work.

class Adam
    include DataMapper::Resource

    property :id, Serial
    property :name, String
    property :state, Integer
end

class AdamObserver
    include DataMapper::Observer
    observe Adam

    before :update do
        if old_state == 1 && @state == 2
            #do something 
        end
    end
end 

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

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

发布评论

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

评论(1

死开点丶别碍眼 2024-09-17 04:20:05

您可以通过 #original_attributes 哈希访问原始值,该哈希由属性对象索引。所以代码可能看起来像这样:

if original_attributes[properties[:state]] == 1 && state == 2
  # do something
end

You can access original values via #original_attributes hash which is indexed by property objects. So the code could look like that:

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