Yii中的Datepicker将数据存储为yy MM d格式

ss2ws0br  于 2022-11-09  发布在  其他
关注(0)|答案(4)|浏览(175)

我有一个表单,其中的输入字段是这样的

<div class="row">
  <?php echo $form->labelEx($model,'due_date'); ?>
  <?php 
    $this->widget('zii.widgets.jui.CJuiDatePicker',
      array(
            'attribute'=>'due_date',
            'model'=>$model,
            'options' => array(
                              'mode'=>'focus',
                              'dateFormat'=>'d MM, yy',
                              'showAnim' => 'slideDown',
                              ),
    'htmlOptions'=>array('size'=>30,'class'=>'date'),
          )
    );
  ?>
  <?php echo $form->error($model,'due_date'); ?>
  </div>

我已经将此表单保存在模型文件中。它是这样的

protected function beforeSave()
  {
    $this->due_date=date('Y-m-d', strtotime(str_replace(",", "", $this->due_date)));
    return TRUE;
  }

CJuiDatePicker用于保存日期选择器中的数据。在保存时,它以d mm yy格式显示日期,但当我要更新表单时,日期以yy MM d格式显示。如果我要更改beforeSave的日期格式,(),它正在以0000-00-00值存储日期格式。没有存储其他日期值。有人能告诉我哪里做错了吗?任何帮助和建议都将不胜感激。

zsohkypk

zsohkypk1#

试试看:

protected function afterFind(){
    parent::afterFind();
    $this->due_date=date('d F, Y', strtotime(str_replace("-", "", $this->due_date)));       
}

protected function beforeSave(){
    if(parent::beforeSave()){
        $this->due_date=date('Y-m-d', strtotime(str_replace(",", "", $this->due_date)));
        return TRUE;
    }
    else return false;
}

把上面的代码添加到你的模型中。它应该可以工作了。

e5njpo68

e5njpo682#

我对欧洲日期也有类似的问题,格式如下:'dd/mm/yyyy',这是我使用的:
在模型规则中:

public function rules()
{
    // NOTE: you should only define rules for those attributes that
    // will receive user inputs.
    return array(
        array('date','date','format'=>Yii::app()->locale->getDateFormat('medium')),

因为'medium'区域设置格式符合我的验证需要。
在我使用的形式中:

<?php echo $form->labelEx($model,'date'); ?>
            <?php
            $this->widget('zii.widgets.jui.CJuiDatePicker', array(
                //'name'=>'date',
                'model'=>$model,
                'attribute'=>'date',
                'language'=>Yii::app()->language=='es' ? 'es' : null,
                'options'=>array(
                    'changeMonth'=>'true', 
                    'changeYear'=>'true',   
                    'yearRange' => '-99:+2',        
                    'showAnim'=>'fold', // 'show' (the default), 'slideDown', 'fadeIn', 'fold'
                    'showOn'=>'button', // 'focus', 'button', 'both'
                    'dateFormat'=>'dd/mm/yy',
                    'value'=>date('dd/mm/yy'),
                    'theme'=>'redmond',
                    'buttonText'=>Yii::t('ui','Select form calendar'), 
                    'buttonImage'=>Yii::app()->request->baseUrl.'/images/calendar.gif', 
                    'buttonImageOnly'=>true,
                ),
                'htmlOptions'=>array(
                    'style'=>'vertical-align:top',
                    'class'=>'span2',
                ),  
            ));?>
            <?php echo $form->error($model,'date'); ?>

以及转换回MySQL格式,以便保存、日期比较......:

$date=strftime('%Y-%m-%d', strtotime(str_replace("/", "-", $this->date)));

希望这对你有帮助。

kninwzqo

kninwzqo3#

这对我很有效:

public function beforeSave()
{
    $this->due_date = date('Y-m-d', strtotime( $this->due_date));
    return parent::beforeSave();
}
2izufjch

2izufjch4#

<?= $form->field($model, 'As_purchaseDate')->widget(
    'trntv\yii\datetime\DateTimeWidget',
    [
        'phpDatetimeFormat' => 'yyyy-MM-dd',
        'clientOptions' => [
            'minDate' => new \yii\web\JsExpression('new Date("01-01-1996")'),
            'allowInputToggle' => false,
            'sideBySide' => true,
            'widgetPositioning' => [
               'horizontal' => 'auto',
               'vertical' => 'auto'

            ]
        ]
    ]);?>

相关问题