如果我尝试使用beforeCreate()方法中定义的date_created字段保存模型,则不会保存它:
class TestEntity extends Phalcon\Mvc\Model
{
public function beforeCreate()
{
$this->date_created = date('Y-m-d H:i:s');
}
/**
* Returns source table name
* @return string
*/
public function getSource()
{
return 'test_entity';
}
}
控制器动作上下文:
$test = new TestEntity();
$test->name = 'test';
var_dump($contact->save()); // gives false
var_dump($contact->getMessages()); // says date_created is not defined
答案 0 :(得分:15)
您需要在执行空验证之前指定创建日期:
<?php
class TestEntity extends Phalcon\Mvc\Model
{
public function beforeValidationOnCreate()
{
$this->date_created = date('Y-m-d H:i:s');
}
/**
* Returns source table name
* @return string
*/
public function getSource()
{
return 'test_entity';
}
}