gpt4 book ai didi

Cakephp 3 : How to detect mobile in controller by requestHandler?

转载 作者:行者123 更新时间:2023-12-04 22:19:48 26 4
gpt4 key购买 nike

我需要在 Controller 中检测移动设备的条件。我在我的 Controller 中尝试了以下代码。

public function initialize()
{
parent::initialize();
$this->loadComponent('RequestHandler');
}

然后我在 index 方法中编写了以下代码
if ($this->RequestHandler->is('mobile')) 
{
//condition 1
}else {
//condition 2
}

在这里我得到了错误
Error: Call to undefined method Cake\Controller\Component\RequestHandlerComponent::is() 

移动如何在 Controller 中检测?

最佳答案

由于 all the request handler does is proxy the request object ,因此不需要请求处理程序:

public function isMobile()
{
$request = $this->request;
return $request->is('mobile') || $this->accepts('wap');
}

Controller 还可以直接访问请求对象,因此问题中的代码可以重写为:
/* Not necessary
public function initialize()
{
parent::initialize();
}
*/

public function example()
{
if ($this->request->is('mobile')) {
...
} else {
...
}
}

关于Cakephp 3 : How to detect mobile in controller by requestHandler?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33008338/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com