yii1.1:$ model-> save()失败,但$ model-> getErrors()返回空数组

时间:2016-04-05 07:57:46

标签: yii

我使用YII1.1.16,我有一些像这样的代码:

public function actionAdd()
{
    $article = new Article;
    $article->type = $this->type;

    if (isset($_POST['article'])) {
        $article->attributes = $_POST['article'];
        if ($article->save()) {
            $this->success('saved');
        } else {
            var_dump($article->getErrors());
        }
    }

    $this->render('add');
}

但是,现在save()失败,但getErrors()返回空数组(),那么我怎么知道保存记录时失败的原因呢?

0 个答案:

没有答案