dsuvs66406 2014-06-23 07:35
浏览 68
已采纳

致命错误:在LanguageComponent上的非对象上调用成员函数read()

I am having this line in my CakePHP code: $language = $this->Cookie->read('language');

and I'm getting this error:

Fatal error: Call to a member function read() on a non-object in
C:\Apache24\htdocs\cake\app\Controller\Component\LanguageComponent.php on line 27

Here is my LanguageComponent.php code

<?php

//App::Import('Component', 'Cookie'); 
class LanguageComponent extends Object {

    public $controller = null;
    public $components = array('Cookie');
    public $languages = array();

    public function initialize($controller) {
        $this->controller = $controller;
        if (empty($languages)) {
            $this->languages = Configure::read('Config.languages');
        }
        $this->set();
    }

    public function set($language = null) {
        $saveCookie = false;
        if (empty($language) && isset($this->controller)) {
            if (!empty($this->controller->params['named']['lang'])) {
                $language = $this->controller->params['named']['lang'];
            } elseif (!empty($this->controller->params['url']['lang'])) {
                $language = $this->controller->params['url']['lang'];
            }
            if (!empty($language)) {
                $saveCookie = true;
            }
        }
        if (empty($language)) {
            $language = $this->Cookie->read('language');
            if (empty($language)) {
                $saveCookie = true;
            }
        }
        if (empty($language) && !array_key_exists($language, $this->languages)) {
            $language = Configure::read('Config.language');
        }
        Configure::write('Config.language', $language);
        if ($saveCookie) {
            $this->Cookie->write('language', $language, false, '1 year');
        }
    }

}

?>

Where could the problem be?

  • 写回答

3条回答 默认 最新

  • douluan8828 2014-06-23 08:51
    关注

    Wrong parent class

    Compare the code in the question:

    class LanguageComponent extends Object {
    

    To any core component:

    class AuthComponent extends Component {
    

    Extending the wrong class means that none of the component constructor logic is invoked, and the way components are loaded on first access will not be available.

    In the process of upgrading?

    This is possibly because the language component was originally written for 1.x - the parent class for components changed when 2.x was released. As mentioned in the 2.0 migration guide:

    Component is now the required base class for all components.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题