yii2 与 mongodb 无法登录或注册 [英] yii2 with mongodb not working for login or signup

查看:65
本文介绍了yii2 与 mongodb 无法登录或注册的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们按照这个 youtube 链接创建 yii2+mongodb 连接,但不工作.检查此链接:https://www.youtube.com/watch?v=1msu95ZkRe8

we follow this youtube link to create yii2+mongodb connection but not working. check this link: https://www.youtube.com/watch?v=1msu95ZkRe8

给出错误对象配置必须是一个包含类"元素的数组.

在视频 user.php 模型中从 doc 文件中复制粘贴该文件是什么,请帮帮我.

in video user.php model copy paste from doc file what is that file please help me.

推荐答案

as per video change below function behaviors in comman/models/User.php

as per video change below function behaviors in comman/models/User.php

 public function behaviors()
{
  return [
    'timestamp' => [
     'class' => 'yii\behaviors\TimestampBehavior',
    'attributes' => [
      ActiveRecord::EVENT_BEFORE_INSERT => ['created_at', 'updated_at'],
      ActiveRecord::EVENT_BEFORE_UPDATE => ['updated_at'],
        ]
    ]
  ];
}

这篇关于yii2 与 mongodb 无法登录或注册的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆