【问题标题】:Yii2 insert date and time in sqlYii2在sql中插入日期和时间
【发布时间】:2016-02-15 19:00:52
【问题描述】:

我正在创建一个 yii 应用程序,我想将数据插入数据库,但问题是如何插入日期和时间。在我从数据库中删除日期时间列之前,它无法插入每个细节。

这是控制器类:

<?php
namespace app\controllers;

use amnah\yii2\user\models\User;
use app\models\Influence;
use Yii;
use yii\filters\AccessControl;
use yii\filters\VerbFilter;
use amnah\yii2\user\controllers\DefaultController as SuperDefault;

class DefaultController extends SuperDefault {

    public function behaviors()
    {
        return [
            'access' => [
                'class' => AccessControl::className(),
                'rules' => [
                    [
                        'actions' => ['index', 'confirm', 'resend', 'logout'],
                        'allow' => true,
                        'roles' => ['?', '@'],
                    ],
                    [
                        'actions' => ['account', 'profile','contact', 'resend-change', 'cancel','advertiser_dashboard','influencer_dashboard', 'influenza_info', 'advertiser'],
                        'allow' => true,
                        'roles' => ['@'],
                    ],
                    [
                        'actions' => ['login', 'register','contact','influencer_dashboard', 'advertiser_dashboard','register_advert','forgot', 'reset', 'login-email', 'login-callback'],
                        'allow' => true,
                        'roles' => ['?'],
                    ],
                ],
            ],
            'verbs' => [
                'class' => VerbFilter::className(),
                'actions' => [
                    'logout' => ['post', 'get'],
                ],
            ],
        ];
    }


    public function actionInfluenza_info()
    {
        $u_id = Yii::$app->user->id;
        $user = User::findOne($u_id);
           $influence= new Influence(); 

        if ($influence->load(Yii::$app->request->post())) {

                    $influence_data = Yii::$app->request->post('Influence', []);
                 $influence->firstname = $influence_data['firstname'];
                 $influence->lastname = $influence_data['lastname'];
                 $influence->email = $influence_data['email'];
                 $influence->city = $influence_data['city'];
                 $influence->type = $influence_data['type'];
                 $influence->pic = $influence_data['pic'];
                 $influence->address = $influence_data['address'];
                 $influence->country = $influence_data['country'];
                 $influence->gender = $influence_data['gender'];
                   $influence->id = $u_id;

                  $influence->save();

            Yii::$app->session->setFlash("Profile-success", Yii::t("user", "Profile updated"));
            return $this->refresh();
        } else {
            return $this->render('influenza_info', [
                 'user' => $user,

                  'influence' =>$influence
            ]);
        }

    }

    }

这是模型类

  <?php

namespace app\models;

use Yii;
use app\controllers\Expression;
/**
 * This is the model class for table "influence".
 *
 * @property integer $id
 * @property integer $user_id
 * @property string $firstname
 * @property string $lastname
 * @property string $email
 * @property string $city
 * @property string $type
 * @property string $pic
 * @property string $address
 * @property string $country
 * @property string $gender
 */
class Influence extends \yii\db\ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return 'influence';
    }

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            [['id', 'user_id', 'firstname', 'lastname', 'email', 'city', 'type', 'pic', 'address', 'country', 'gender'], 'required'],
            [['id', 'user_id'], 'integer'],
       [['firstname', 'lastname', 'email', 'city', 'type', 'pic', 'address', 'country', 'gender'], 'string', 'max' => 30]
        ];
    }
public function beforeSave($insert)
{
if ($this->isNewRecord) { // new record only, otherwise time is inserted every time this record is updated
    $this->created_at = new Expression('NOW()');
}
parent::afterSave($insert);
}
    /**
     * @inheritdoc
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'user_id' => 'User ID',
            'firstname' => 'Firstname',
            'lastname' => 'Lastname',
            'email' => 'Email',
            'city' => 'City',
            'type' => 'Type',
            'pic' => 'Pic',
            'address' => 'Address',
            'country' => 'Country',
            'gender' => 'Gender',
            'created_at' => 'Created_at',
        ];
    }
}

表 sql

CREATE TABLE `influence` (
  `id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `firstname` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `lastname` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `email` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `city` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `pic` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `address` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `country` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `gender` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `created` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP
) ;

如何让它自动插入。如果我从我的管理员那里尝试它,它可以工作并获取日期和时间。但 yii 则不然。

【问题讨论】:

    标签: php mysql yii2


    【解决方案1】:

    为此,我从所需规则中删除了 created 属性。 然后,我创建了一个 beforeSave() 方法,并在新记录中使用 Expression 插入它。

    public function beforeSave($insert)
    {
    if ($this->isNewRecord) { // new record only, otherwise time is inserted every time this record is updated
        $this->created = new Expression('NOW()');
    }
    parent::beforeSave($insert);
    }
    

    确保将表达式导入模型

    更新 更新代码感谢@crafter

    【讨论】:

    • 没有错误没有插入除非我删除数据库中的时间列我在问题中编辑了我的模型类看看它是不是我做得不好
    • 试试这个:if(!model-&gt;save()) print_r($model-&gt;getErrors()) 这会告诉你哪个规则失败了
    • 更新了代码,试试看,但包括if(!model-&gt;save()) print_r($model-&gt;getErrors()) 看看如果有什么失败了怎么办
    【解决方案2】:

    您应该按以下方式使用表达式。参考这个链接Class yii\db\Expression

    当一个 Expression 对象嵌入到 SQL 语句或片段中时,它将被 $expression 属性值替换,而无需任何 DB 转义或引用。例如,

    $expression = new Expression('NOW()');
    $now = (new \yii\db\Query)->select($expression)->scalar();  // SELECT NOW();
    echo $now; // prints the current date
    

    【讨论】:

      【解决方案3】:

      问题在于您混淆了 beforeSave 和 afterSave 事件。

      另外,你的字段名是created,不是created at。

      public function beforeSave($insert)
      {
          if ($this->isNewRecord) { // new record only, otherwise time is inserted every time this record is updated
              $this->created = new Expression('NOW()');  // <== You were setting $this->created_at
          }
          parent::beforeSave($insert);  // <== You were calling afterSave()
      }
      

      【讨论】:

        【解决方案4】:

        你有

         `created` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP
        

        在您的数据库表中,但似乎您已将模型字段创建为字符串。

        * @property string $created
        

        检查是否存在与 ths 字段相关的不匹配问题,并最终在保存或更改模型(或数据库)之前提供正确的转换,以便具有相同的数据类型..

        无论如何,您没有 $created 的规则并且未发布 添加

        public function rules()
        {
            return [
                [['id', 'user_id', 'firstname', 'lastname', 'email', 'city', 'type', 'pic', 'address', 'country', 'gender'], 'required'],
                [['id', 'user_id'], 'integer'],
           [['firstname', 'lastname', 'email', 'city', 'type', 'pic', 'address', 'country', 'gender'], 'string', 'max' => 30]
           [['created',], 'safe'],
        
            ];
        }
        

        也试试

         $influence->save(false);
        

        以这种方式保存数据而不进行验证检查(仅用于调试)如果以这种方式保存模型,则尝试添加

               [['created'], 'date'],
        

        在规则中

        【讨论】:

        • PHP 中没有日期数据类型。 (人类可读)日期将在 PHP 中以字符串形式存在。
        • 我这个问题与您在模型规则中没有规则或安全声明的事实有关。我已经更新了答案
        • 我已经更新了答案。尝试 save(false) 并 tr 添加 [['created'], 'date'], 到规则
        猜你喜欢
        • 2015-03-17
        • 2013-05-19
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2019-07-22
        • 2015-09-05
        • 2021-10-22
        • 1970-01-01
        相关资源
        最近更新 更多