Ruby 1.9.3 + Rails 3.2.8
我有一个视图,在我的应用程序的每个页面上都呈现在一个局部:
<span id="sync-time">
<%= @sync.dropbox_last_sync.strftime('%b %e, %Y at %H:%M') %>
</span>
为了使用我的syncs
模型并访问该dropbox_last_sync
方法,我必须将它包含在整个应用程序的每个控制器中。例如:
class EntriesController < ApplicationController
def index
@sync = current_user.sync
end
end
...
class CurrenciesController < ApplicationController
def index
@sync = current_user.sync
end
end
...ETC。
有没有办法通过以某种方式将模型包含在我的应用程序控制器中来使模型在任何地方都可用?syncs