我有一个 Post 模型(如下),它有一个回调方法来通过延迟作业修改 body 属性。如果我删除“延迟”。只需执行#shorten_urls!立即,它工作正常。但是,从延迟作业的上下文来看,它不会保存更新的正文。
class Post < ActiveRecord::Base
after_create :shorten_urls
def shorten_urls
delay.shorten_urls!
end
def shorten_urls!
# this task might take a long time,
# but for this example i'll just change the body to something else
self.body = 'updated body'
save!
end
end
奇怪的是,作业处理没有任何问题:
[Worker(host:dereks-imac.home pid:76666)] Post#shorten_urls! completed after 0.0021
[Worker(host:dereks-imac.home pid:76666)] 1 jobs processed at 161.7611 j/s, 0 failed ...
然而,正文没有更新。有人知道我在做什么错吗?
- 编辑 -
根据 Alex 的建议,我已将代码更新为如下所示(但无济于事):
class Post < ActiveRecord::Base
after_create :shorten_urls
def self.shorten_urls!(post_id=nil)
post = Post.find(post_id)
post.body = 'it worked'
post.save!
end
def shorten_urls
Post.delay.shorten_urls!(self.id)
end
end