的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
...等。
有沒有一種辦法可以讓現有的syncs
模型處處包括它在我的應用程序控制器不知何故?
很好,謝謝! –