## 模型初始化 initialize( ) #### 1. 作用:创建模型对象之前做的预处理工作。 >[info] 在ThinkPHP5中,创建数据模型是一个非常容易的过程,整个过程是透明的。 #### 2. 实例演示:创建模型对象前,初始化部分模型类属性 >[info] 模型对象创建时,除了模型名$name和所继承的类$class(命名空间表示)之外,其它所有的模型属性都是空的或只有默认值。随着以后的操作,这些属性会根据操作要求自动完成初始化。 * 第一步:在上节课创建的模型类Staff.php里,添加初始化方法 >[info] 本教程如无特别说明:源码均指:Model.php 类文件中的内容。 文件位置:/thinkphp/library/think/Model.php ~~~ <?php namespace app\index\model; //导入模型类 use think\model; class Staff extends model { //在子类重写父类的初始化方法initialize() protected function initialize(){ //继承父类中的initialize() parent::initialize(); //初始化数据表名称,通常自动获取不需设置 $this->table = 'tp5_staff'; //初始化数据表字段信息 $this->field = $this->db()->getTableInfo('', 'fields'); //初始化数据表字段类型 $this->type = $this->db()->getTableInfo('', 'type'); //初始化数据表主键 $this->pk = $this->db()->getTableInfo('', 'pk'); } } ~~~ >[info] 在自定义的模型初始化方法中,我们对模型中的相关属性进行初始化:$field,$pk,$table,$type(属性含义上节课已详细说明) * 第二步:控制器Index.php中进行调用: ~~~ <?php namespace app\index\controller; //导入模型类 use app\index\model\Staff; class Index { public function index(){ //创建模型类Staff $model = new Staff(); //查看Staff类实例$model dump($model); } } ~~~ * 第三步:浏览器地址栏输入:tp5.com/index.php/index/index/ 查看这个自定义模型对象 ~~~ object(app\index\model\Staff)#5 (28) { ["connection":protected] => array(0) { } ["query":protected] => NULL ["name":protected] => string(5) "Staff" //这是我们初始化获取的数据表名称 ["table":protected] => string(9) "tp5_staff" ["class":protected] => string(21) "app\index\model\Staff" ["error":protected] => NULL ["validate":protected] => NULL //这是我们初始化获取的数据表主键信息 ["pk":protected] => string(2) "id" //这是我们初始化获取的数据表字段名信息 ["field":protected] => array(7) { [0] => string(2) "id" [1] => string(4) "name" [2] => string(3) "sex" [3] => string(3) "age" [4] => string(6) "salary" [5] => string(4) "dept" [6] => string(8) "hiredate" } ["readonly":protected] => array(0) { } ["visible":protected] => array(0) { } ["hidden":protected] => array(0) { } ["append":protected] => array(0) { } ["data":protected] => array(0) { } ["change":protected] => array(0) { } ["auto":protected] => array(0) { } ["insert":protected] => array(0) { } ["update":protected] => array(0) { } ["autoWriteTimestamp":protected] => bool(false) ["createTime":protected] => string(11) "create_time" ["updateTime":protected] => string(11) "update_time" ["dateFormat":protected] => string(11) "Y-m-d H:i:s" //这是我们初始化获取的数据表字段类型信息 ["type":protected] => array(7) { ["id"] => string(15) "int(4) unsigned" ["name"] => string(11) "varchar(30)" ["sex"] => string(19) "tinyint(2) unsigned" ["age"] => string(19) "tinyint(3) unsigned" ["salary"] => string(19) "float(8,2) unsigned" ["dept"] => string(19) "tinyint(2) unsigned" ["hiredate"] => string(4) "date" } ["isUpdate":protected] => bool(false) ["updateWhere":protected] => NULL ["relation":protected] => NULL ["failException":protected] => bool(false) ["useGlobalScope":protected] => bool(true) } ~~~ * * * * * #### 3、总结: >[success] 模型初始化,绝大多数情况下会自动完成,并不需要我们去做。