ruby-on-rails – 如何访问’可以吗?’细胞内的方法?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何访问’可以吗?’细胞内的方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 ruby-on-rails项目中使用了cancan和cell gem.
如何访问可以?细胞内的方法
谢谢.

解决方法

我必须做到这一点.尝试
class MyCell < Cell::Rails

  include CanCan::ControllerAdditions

end

如果你也在使用Devise,我必须这样做:

class MyCell < Cell::Rails

  include CanCan::ControllerAdditions
  include Devise::Controllers::Helpers
  Devise::Controllers::Helpers.define_helpers(Devise::Mapping.new(:user,{}))

end

#define_helpers会添加辅助方法,如current_user和user_signed_in?到细胞.

原文链接:https://www.f2er.com/ruby/268569.html

猜你在找的Ruby相关文章