2
我需要在控制器中檢測移動條件。我在我的控制器中嘗試了下面的代碼。CakePHP 3:如何通過requestHandler檢測控制器中的移動?
public function initialize()
{
parent::initialize();
$this->loadComponent('RequestHandler');
}
然後我寫了下面的代碼在指數法
if ($this->RequestHandler->is('mobile'))
{
//condition 1
}else {
//condition 2
}
在這裏,我得到的錯誤
Error: Call to undefined method Cake\Controller\Component\RequestHandlerComponent::is()
如何移動的控制器檢測?