CanCan - 当我没有调用 create 时,为什么 can: create 规则会运行?

发布于 2024-10-17 04:27:21 字数 249 浏览 2 评论 0原文

我的能力.rb 文件中有以下内容:

can :create, ThreadParticipation do |participation|
  Rails.logger.info 'XXXXXXX'
end

奇怪的是,当我调用 ThreadParticipation.new 时,该规则正在生效,并且我看到了记录器输出?

为什么可以 :create run 当我刚刚做 .new

谢谢

I have the following in my ability.rb file:

can :create, ThreadParticipation do |participation|
  Rails.logger.info 'XXXXXXX'
end

What's strange is that when I call ThreadParticipation.new, that rule is rulling and I'm seeing the logger output?

Why would can :create run when I'm just doing .new

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终弃我 2024-10-24 04:27:21

create 是 new + create 操作的别名。
这样做是为了模拟 CRUD 行为。
所以,

:create = :new + :create
:read = :index + :show
:update = :edit + :update
:destroy = :destroy

还有,

:manage = :create + :read + :update + :destroy

create is an alias for the actions new + create.
This has been to done to simulate C-R-U-D behaviour.
So,

:create = :new + :create
:read = :index + :show
:update = :edit + :update
:destroy = :destroy

Also,

:manage = :create + :read + :update + :destroy
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文