在用户的主页中,我想显示用户的phrases
.
class StaticPagesController < ApplicationController
def home
if user_signed_in?
@phrases = current_user.phrases.decorate
end
end
end
但这失败了Could not infer a decorator
。我理解错误的发生是因为只有在适当的控制器中我才能使用该decorate
方法。我读过这篇文章,但我可能会误解它。
所以如果我想decorate
在这种情况下使用方法,有什么好的方法来解决它?