yii2一些入门知识

       最近在学习yii2,不过在学习过程中发现除了官网的文档,网上关于yii2的资料很难找,所以只能边学边整理。

       在controller文件中需要加上命名空间

           namespace app\controllers;

           use yii\web\Controller;

 

      创建模板model文件时需要加上命名空间

       第一种

             namespace app\models;

            use yii\db\ActiveRecord;

            class Article extends ActiveRecord{

                  public static function tableName(){

                        return ‘{{%article}}’;  //因为ActiveRecord是与数据库关联的,所以需要写一个静态函数关联数据库表名

                 }

            }

        第二种

               namespace app\models;

               use yii\base\Model;

               class Test extends Model{

                      public $username;

                     public$password;

               }

你可能感兴趣的:(yii2,控制器,创建模型)