我的問題是指下列開發堆棧:我應該如何在我的ApplicationController中使用Draper?
- 的Rails 3.2.1
- 德雷珀0.14
- 祖先1.2.5
我想要做的是,提供的導航我的佈局。所以我在我的ApplicationController
中定義了一個過濾器。
class ApplicationController < ActionController::Base
[..]
before_filter :current_navigation
[..]
def current_navigation
@n = PublicationDecorator.find(1)
end
end
正如你在代碼中看到上面的列表中,我使用的draper
。我的PublicationDecorator
不適用於ApplicationController
。 那麼我如何獲得我所有的Publications
裝飾?
uninitialized constant ApplicationController::PublicationDecorator
我正在使用ancestry
gem來實現層次結構。 A 進一步的問題是,將所有的對象裝飾,如果我使用ancestry
?
類似http://stackoverflow.com/questions/10884740/nested-attributes-with-draper-and -rails-3 – Robin