我一直在阅读有关在 Symfony 2 中创建自定义选民的信息。根据此页面,可以将对象传递给 securitycontext 的 isGranted 方法,我在自己的控制器中完成了该方法:
$page = new Page();
if ( ! $securityContext->isGranted('CONTENT_CREATE', $page)) {
throw new AccessDeniedException('Fail');
}
看起来投票方法应该接受它,但是,当我在 $object 参数上调用 get_class 时,而不是获取我的 Page 实体,我得到:
Symfony\Component\HttpFoundation\Request
public function vote(TokenInterface $token, $object, array $attributes)
{
print_r(get_class($object)); die();
return VoterInterface::ACCESS_ABSTAIN;
}
我的选民在我的 services.yml 文件中被定义为服务:
content_security.access.my_voter:
class: My\Bundle\Security\Authorization\Voter\MyVoter
arguments: ["@service_container"]
public: false
tags:
- { name: security.voter }
我哪里错了?
任何建议表示赞赏。
谢谢