当从发条调用模型方法“model_method”时,I18n.locale总是等于我的默认语言环境。
如何将当前区域设置传递给模型方法?
clockwork.rb
的一部分:
every(10.minutes, 'test') do
Book.delay(:queue => 'some_queue').model_method
end
book.rb
的一部分:
def self.model_method
...
message = I18n.t('some_text')
# always equals to ":en"
end
答案 0 :(得分:1)