所以,我看到有人围绕这个话题跳舞,但我找不到答案。我刚用导轨安装了'draper'宝石。这很棒,但我希望能够将它与angularjs一起使用。有没有办法做到这一点?或者我需要在angularjs中制作一个服装装饰器....这意味着我的'draper'宝石是无用的:
class PageDecorator < Draper::Decorator
delegate_all
def emphatic
object.text.upcase
end
end
我的html是:
<li class="gregli" ng-repeat="page in pages">
{{ page.text }}
</li>
我的rails控制器是:
def index
@pages = Page.all.decorate
render json: @pages
end