我是yii框架的新手 以2个字段的形式创建了一个表单(不使用内置小部件) time_start,time_end - 在数据库中键入DATETIME 数据库中的所有数据都会正确记录,但如果输入字母而不是它们,则写入零 我试图在模型中添加规则:
array ('time_start, time_end', 'type', 'type' => 'datetime', 'datetimeFormat' => 'Y-m-d H:i:s'),
似乎格式与存储在数据库中的格式相同,但没有任何反应。 在方法 safe()之后的控制器中,写道:
print_r ($ model-> getErrors ());
例如,介绍到该领域: 2006-12-26 15:00:30 获取一个数组:
Array ([time_start] => Array ([0] => Start must be datetime.) [Time_end] => Array ([0] => End must be datetime.))
所以尝试了不同的格式,但错误都是一样的。
告诉我,我怎么能这样做,你只能输入格式
(如数据库),没有别的。
在此先感谢。
* 更新*
在“ views / site / index ”中:
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$modeltask->search(),
'itemView'=>'_viewtask',
)); ?>
viewtask :
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('author_id')); ?>:</b>
<?php echo CHtml::encode($data->author_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('performer_id')); ?>:</b>
<?php echo CHtml::encode($data->performer_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('parent_task_id')); ?>:</b>
<?php echo CHtml::encode($data->parent_task_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('project_id')); ?>:</b>
<?php echo CHtml::encode($data->project_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('hours_plan')); ?>:</b>
<?php echo CHtml::encode($data->hours_plan); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('title')); ?>:</b>
<?php echo CHtml::encode($data->title); ?>
<br />
<form action="http://testik.test/index.php?r=site/savec" method="post">
<input type="hidden" value="<?php echo $data->id; ?>" name="id_task">
<input type="hidden" value="<?php echo Yii::app()->user->id ?>" name="id_user">
<input type="text" placeholder="Дата начала" name="time_start">
<input type="text" placeholder="Дата конца" name="time_end">
<input type="submit" value="Challenge accepted">
</form>
</div>
SiteController,方法 actionIndex 和 actionSaveC :
public function actionIndex()
{
$modeltask=new Task('search');
$modeltask->unsetAttributes();
if(isset($_GET['Task']))
$modeltask->attributes=$_GET['Task'];
$this->render('index', array(
'modeltask'=>$modeltask,
));
}
public function actionSaveC()
{
$model = new Calendar;
$model->unsetAttributes();
if(!empty($_POST))
{
$model->attributes = $_POST;
$model->save();
print_r($model->getErrors());
//$this->redirect(array('index'));
}
型号:添加了一行,没有其他内容发生变化 忘了说所有创建的CRUD
答案 0 :(得分:3)
您的验证规则定义错误。如果您只想接受来自用户的格式正确的日期,则应该读取规则
array ('time_start, time_end', 'date', 'format' => 'yyyy-MM-dd HH:mm:ss'),
这会设置CDateValidator
,其中包含正确的日期format,您必须指定不使用PHP DateTime
约定,但使用CDateTimeParser
的约定。