我有一個(切下)模型,它看起來像這樣:如何在Rails的模型Twitter.update
class MyModel < ActiveRecord::Base
def self.update_status
event_time = time_ago_in_words 30.minutes.from_now
Twitter.update("Event is starting in #{event_time}")
end
end
正如預期的那樣,我得到一個NoMethodError例外,由於試圖用一個方法「time_ago_in_words '來自DateHelper。我該如何做到這一點,或許更重要的是,我是否以正確的方式開展這項工作?
我假設'Twitter.update'在某人的Twitter帳戶上發佈了新推文? – Mischa
是的,這是正確的。我已經刪除了這裏不需要的代碼。 – sudoash