1

我是 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.))

所以尝试了不同的格式,但错误都是一样的。告诉我,我该怎么做才能让您只能输入格式(例如数据库)而不能输入其他任何内容。提前致谢。


*更新 *
在“视图/站点/索引”中:

  <?php $this->widget('zii.widgets.CListView', array(
        'dataProvider'=>$modeltask->search(),
        'itemView'=>'_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、方法actionIndexactionSaveC

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

4

1 回答 1

3

您的验证规则定义错误。如果您只想从用户那里接受格式正确的日期,则规则应为

array ('time_start, time_end', 'date', 'format' => 'yyyy-MM-dd HH:mm:ss'),

这设置了CDateValidator正确的日期格式,您必须指定不使用 PHPDateTime约定,而是使用CDateTimeParser.

于 2013-06-22T12:34:00.367 回答