我使用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()
返回空数组(),那么我怎么知道保存记录时失败的原因呢?