在 Cakephp 中是否必须使用 isAuthorized() 方法?
Is it mandatory to use the isAuthorized() method in Cakephp?
我正在使用 cakephp 2.6.9.
并尝试使用 auth 登录,但它显示:
$controller does not implement an isAuthorized() method
是否必须在cakephp中使用isAuthorized()
方法?
如果您将 Auth 组件与 ControllerAuthorize 授权适配器一起使用是。如果您想使用其他东西,请使用其他适配器之一或编写您自己的适配器。
有关 auth 组件工作原理的基本介绍,请参阅 the documentation。
我正在使用 cakephp 2.6.9.
并尝试使用 auth 登录,但它显示:
$controller does not implement an isAuthorized() method
是否必须在cakephp中使用isAuthorized()
方法?
如果您将 Auth 组件与 ControllerAuthorize 授权适配器一起使用是。如果您想使用其他东西,请使用其他适配器之一或编写您自己的适配器。
有关 auth 组件工作原理的基本介绍,请参阅 the documentation。