我想在某个时间在其他控制器中自动执行操作。我在这个网站上阅读了更多类似的帖子,所有这些帖子都讲述了何时或延迟工作。但我不明白它是如何工作的=(这是我想要的一个例子。
def create
@user = User.find(params[:user_id])
@client = @user.clients.create(params[:client])
if @client.save
redirect_to user_clients_path(@user)
else
render :action => 'new'
end
Timeout(@client.event_time)
redirect_to :controller => :some_controller, action => some_action
end