我已经花了很多时间,但我还无法弄清楚问题是什么。
我试图实现TimeStampBehaviour
(和Blamable
,但它们现在都没有工作)。我的模特课:
<?php
namespace common\models;
use Yii;
use yii\behaviors\BlameableBehavior;
use yii\behaviors\TimestampBehavior;
use yii\db\Expression;
use yii\db\ActiveRecord;
/**
* This is the model class for table "news".
* .... property list
*/
class News extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'news';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['title', 'short_description', 'content'], 'required'],
[['content'], 'string'],
[['title'], 'string', 'max' => 128],
[['short_description'], 'string', 'max' => 255],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
// ... attribute label list
}
public function behaviors()
{
return [
'timestamp' => [
'class' => 'yii\behaviors\TimestampBehavior',
'attributes' => [
ActiveRecord::EVENT_BEFORE_INSERT => ['created_at', 'updated_at'],
ActiveRecord::EVENT_BEFORE_UPDATE => ['updated_at'],
],
'value' => new Expression('NOW()'),
],
'blameable' => [
'class' => BlameableBehavior::className(),
'createdByAttribute' => 'created_by',
'updatedByAttribute' => 'updated_by',
],
];
}
}
我可以保存我的模型,每个字段都已正确更新,但created_at
,updated_at
,created_by
,updated_by
字段始终为空。
我的数据库表名是新闻,它包含4个字段:created_at
和updated_at
字段的类型是DATETIME(我已经尝试过使用INT和UNIX时间戳,但它没有& #39; t work),其他类型是INTEGER。
可能是什么问题?我已经尝试过我和朋友谷歌发现的一切。 :)谢谢。
更新#1:
My NewsController创建和更新操作:
public function actionCreate()
{
$model = new News;
if ($model->load(Yii::$app->request->post()))
{
if($model->save()) {
$this->redirect(array('index'));
}
}
return $this->render('create',array(
'model'=>$model,
));
}
public function actionUpdate($id)
{
$model = $this -> findModel ($id);
if ($model->load(Yii::$app->request->post())) {
if($model->save()) {
$this->redirect(array('index'));
}
}
return $this->render('update',array(
'model'=>$model,
));
}
更新#2: 我不小心&#39;注意到,如果我尝试更新我的模型,问题就存在了。我刚刚创建了一个新模型,所有四列都填充了正确的数据。
更新#3:
protected function findModel($id)
{
if (($model = News::findOne($id)) !== null) {
return $model;
} else {
throw new NotFoundHttpException('The requested page does not exist.');
}
}
答案 0 :(得分:1)
确保您实际上正在更改模型字段中的任何内容,因为如果您只是点击&#34;保存&#34;没有任何更改的按钮,数据库中没有更新模型(没有必要),因为TimestampBehavior不起作用。