1

我在这里打破我的头。希望你能看看是什么错误。我已经通过火花将 PHPActiveRecord 安装到 CodeIgniter 并且除了一件事之外一切都很好。让我给你看一些代码。

这是我有问题的控制器。

模型文章.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Article extends ActiveRecord\Model
{
    static $belongs_to = array(
        array('category'),
        array('user')
    );

    public function updater($id, $new_info)
    {
            // look for the article
        $article = Article::find($id);

            // update modified fields
        $article->update_attributes($new_info);
        return true;
    }
}

这是它向我显示错误的部分。Controllerarticles.php中的相关代码

        // if validation went ok, we capture the form data.
        $new_info = array(
            'title'       => $this->input->post('title'),
            'text'        => $this->input->post('text'),
            'category_id' => $this->input->post('category_id'),
         );

        // send the $data to the model                          
        if(Article::updater($id, $new_info) == TRUE) {
            $this->toolbox->flasher(array('code' => '1', 'txt' => "Article was updated successfully."));
        } else {
            $this->toolbox->flasher(array('code' => '0', 'txt' => "Error. Article has not been updated."));
        }

        // send back to articles dashboard and flash proper message
        redirect('articles');

当我调用 Article::updater($id, $new_info) 时,它会显示一个令人讨厌的大错误:

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

最奇怪的是,我有一个名为 categories.php 的控制器和模型 Categoy.php具有相同的功能(我复制粘贴了文章的类别功能),这一次不起作用。

我在模型 Article.php 中有不同的功能,它们都工作正常,我正在为 Article::updater 部分苦苦挣扎。

有人知道正确更新一行的方法吗?我按照 PHP AR 站点中的文档所述使用,它给了我这个错误。为什么它确实说那不是一个对象?当我执行 $article = Article::find($id) 时,它应该是一个对象。

也许我没有看到真正容易的东西。在电脑前呆了太多小时。

谢谢朋友。

4

2 回答 2

3

你需要改变:

public function updater($id, $new_info)
    {
            // look for the article
        $article = Article::find($id);

到:

public static function updater($id, $new_info)
    {
            // look for the article
        $article = Article::find($id);
于 2012-07-25T04:25:50.437 回答
2

函数更新器需要标记为静态,并且它应该在 $id 错误时处理错误情况。

public static function updater($id, $new_info)
{
        // look for the article
    $article = Article::find($id);
    if ($article === null)
        return false;

        // update modified fields
    $article->update_attributes($new_info);
    return true;
}
于 2012-07-25T04:24:19.577 回答