Is_granted 方法 return Symfony 4 错误
Is_granted method return error on Symfony 4
我正在学习 Symfony 4 并尝试在 twig 中使用 is_granted 方法但不幸的是 return 错误:
HTTP 500 Internal Server Error
Argument 4 passed to Symfony\Component\Security\Core\Event\VoteEvent::__construct() must be of the type int, null given, called in /var/www/vendor/symfony/security-core/Authorization/Voter/TraceableVoter.php on line 41
这是我的代码
{% if is_granted('ROLE_USER') %}
{% endif %}
我还不了解投票器,但只想使用 is_granted 方法?这里有什么问题?
任何帮助将不胜感激?
这里有一个相似点:http://github.com/symfony/symfony/issues/30675A Voter的vote()
方法没有一个return
,用来创建一个VoteEvent
.
我正在学习 Symfony 4 并尝试在 twig 中使用 is_granted 方法但不幸的是 return 错误:
HTTP 500 Internal Server Error
Argument 4 passed to Symfony\Component\Security\Core\Event\VoteEvent::__construct() must be of the type int, null given, called in /var/www/vendor/symfony/security-core/Authorization/Voter/TraceableVoter.php on line 41
这是我的代码
{% if is_granted('ROLE_USER') %}
{% endif %}
我还不了解投票器,但只想使用 is_granted 方法?这里有什么问题?
任何帮助将不胜感激?
这里有一个相似点:http://github.com/symfony/symfony/issues/30675A Voter的vote()
方法没有一个return
,用来创建一个VoteEvent
.