Symfony 2 对视图中对象的访问控制

发布于 2024-12-22 09:26:05 字数 161 浏览 2 评论 0原文

在视图中,我可以使用

if ($view['security']->isGranted('ROLE_ADMIN')) :

来检查用户是否具有特定角色。但是物体呢?

例如:当用户查看他/她的帖子时,我想显示编辑/删除按钮

In views, I can use

if ($view['security']->isGranted('ROLE_ADMIN')) :

To check if the user has a certain role. But what about objects?

For example: when a user is viewing his/her post, I want to show an edit/delete button

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

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

发布评论

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

评论(1

南风几经秋 2024-12-29 09:26:05

在 twig 模板中,您可以使用 is_granted 函数,请参阅 模板中的访问控制了解更多信息。

要将其应用到 ACL,您只需执行以下操作:

{% if is_granted('EDIT', post) %}
    Show buttons here
{% endif %}

In a twig template you can use the is_granted function, see Access control in templates for more information.

To apply it to ACL you can just do:

{% if is_granted('EDIT', post) %}
    Show buttons here
{% endif %}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文