CakePHP 致命错误:在非对象(控制器)上调用成员函数 create()

发布于 2024-12-28 17:11:06 字数 758 浏览 0 评论 0原文

我有 CakePHP 控制器代码,它抛出以下错误“致命错误:调用非对象上的成员函数 create()”。

控制器代码如下:

if ($this->request->is('post')) {
            $this->MonthlyReturn->create();
            $this->MonthlyReturn->saveField('company_id', $cid);    // Assign current company ID to this monthly return before saving
            if ($this->MonthlyReturn->save($this->request->data)) {
                $this->Session->setFlash(__('The monthly return has been saved'));
                $this->redirect(array('action' => 'index'));
            } else 
            {
                $this->Session->setFlash(__('The monthly return could not be saved. Please, try again.'));
            }
        }

任何帮助将不胜感激。

I have CakePHP Controller code which is throwing up the following error 'Fatal error: Call to a member function create() on a non-object'.

The controller code is as follows:

if ($this->request->is('post')) {
            $this->MonthlyReturn->create();
            $this->MonthlyReturn->saveField('company_id', $cid);    // Assign current company ID to this monthly return before saving
            if ($this->MonthlyReturn->save($this->request->data)) {
                $this->Session->setFlash(__('The monthly return has been saved'));
                $this->redirect(array('action' => 'index'));
            } else 
            {
                $this->Session->setFlash(__('The monthly return could not be saved. Please, try again.'));
            }
        }

Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

分分钟 2025-01-04 17:11:06

如果您在控制器中定义 $uses ,则需要显式加载 MonthlyReturn 模型:

var $uses = array('MonthlyReturn','Employee','Company');

请参阅 文档

If you define $uses inside your controller you need to explicitly load the MonthlyReturn model:

var $uses = array('MonthlyReturn','Employee','Company');

See documentation

愁以何悠 2025-01-04 17:11:06

你应该首先像这样加载模型

$this->loadModel("MonthlyReturn");

这里的 MonthlyReturn 是模型的名称。

you should load the model first like this

$this->loadModel("MonthlyReturn");

Here the MonthlyReturn is the name of the Model.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文