我有一个列for_date
的表,在数据库中按类型整数保存。
为了使用格式DateTime显示for_date
,我使用ActiveForm代码:
<?= $form->field($model, 'for_date')->textInput([
'class' => 'form-control datepicker',
'value' => $model->for_date ? date(Yii::$app->params['dateFormat'], $model->for_date) : date(Yii::$app->params['dateFormat'], time()),
'placeholder' => 'Time'])
->label('Attendance Date') ?>
但是当我创建并保存时,Yii通知This field must be integer
在模型文件中,我有两个函数在验证之前进行转换,但它仍然是错误的。
public function beforeValidate(){
if(!is_int($this->for_date)){
$this->for_date = strtotime($this->for_date);
$this->for_date = date('d/M/Y', $this->for_date);
}
return parent::beforeValidate();
}
public function afterFind(){
$this->for_date = \Yii::t('app', Yii::$app->formatter->asDate($this->for_date));
$this->for_date = date('d/M/Y', $this->for_date);
return parent::afterFind();
}
如何使用整数保存到数据库中?
答案 0 :(得分:0)
根据您的代码,for_date
由于该行而在beforeValidate
运行后仍处于日期格式:
$this->for_date = date('d/M/Y', $this->for_date);
删除此行,它应该有效。
但是,您仍然会遇到问题,例如日期格式化或输入无效日期的人,例如30/02/2015
。
我建议创建一个单独的属性,例如for_date_display
并为此添加日期规则。然后在beforeSave
中将此日期转换为时间戳,并将for_date
设置为此值,如下所示:
public $for_date_display;
...
public function afterFind() {
$this->for_date_display = \Yii::t('app', Yii::$app->formatter->asDate($this->for_date))
}
public function beforeSave($insert = true) {
$this->for_date = strtotime($this->for_date_display);
return parent::beforeSave($insert);
}
答案 1 :(得分:0)
我找到了解决方案。在模型搜索中(我的情况为AttendanceSearch.php
),查找规则功能并将for_date
从行integer
移至safe
我的代码:
public function rules()
{
return [
[['id', 'user_id', 'project_id', 'commit_time', 'workload_type'], 'integer'],
[['comment', 'for_date'], 'safe'],
];
}