* [ ] Model 文件的作用
* 集中管理各表的操作,控制层调用 Model 方法,控制层返回结果
* 避免在控制器里面直接写操作表,加入数据表名因为某种原因,名字变了,那么改动的地方特别多
* 当然根据个人喜好,选择不同的操作方式
* [ ] 场景
* 假设操作 user 数据库的 user_account 表
* 假设项目里面存在操作多个数据库,那么操作每个表的 Model 文件存储路径为:
* /home/wwwroot/project/appliction/lib/model/User/AccountModel.php
* 命名规则:/home/wwwroot/project/appliction/lib/model/[数据库名(和数据库中间类名一致)]/[不带表前缀的名称,首字母大写]Model.php
* 实例代码:
~~~
<?php
namespace model\User;
use model\Common\CurdTrait;
use model\Common\PublicModel;
/**
* 用户管理
* Class AccountModel
* @package model\User
*/
class AccountModel extends PublicModel
{
use CurdTrait;
// 操作的数据库
protected static $dbObj = 'User';
// 操作的表名,不带表前缀
protected static $tabName = 'account';
// [如果没有,设置为空字符] 该表的主键
protected static $tabId = 'uid';
// 简单的Demo
public static function getUserInfo( $uids = [] )
{
if ( empty($uids) )
{
return [];
}
$where = array(
'uid[in]' => $uids,
);
$user_infos = self::select($where);
return $user_infos;
}
}
~~~
- 开始使用
- 配置文件
- 路由模式
- AutoLoad类
- 启动文件
- __construct
- SetRouting
- SetAlias
- SetStop
- SetError
- Access
- SetWorker
- SetClassFile
- SetClassDir
- Run
- OpenLoad
- LinuxStartAll
- Session类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Cookie类
- 使用说明
- set
- get
- delete
- pull
- has
- TempLets类
- 模板语法
- 模板标签
- html
- show
- assign
- obtain
- Request类
- get
- post
- host
- referer
- getip
- localip
- header
- body
- file
- scheme
- protocolversion
- uri
- path
- querystring
- method
- Response
- SendFile
- FileStream
- SendData
- SetStatus
- SetHead
- SetMime
- WebSend
- redirect
- dumpJson
- dump
- come
- ps
- Frame类
- GetWeb
- ViewFile
- RoutingData
- SetClassFile
- SetClassDir
- GetMime
- FileMime
- LoadDir
- StartDir
- IsJson
- ArrJson
- JsonFormat
- ObStart
- GetConfig
- ConfigDir
- TempDir
- GetRunData
- GetStatic
- IsDebug
- SetDebug
- GetDebugInfo
- GlobalVariables类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Mysql类
- 新版本
- 第三方
- Thinkorm
- Medoo
- 旧版本
- Mysql 配置格式
- 项目中操作数据库
- 项目场景
- 项目数据库配置
- 项目数据库中间类
- 项目中操作数据表
- 连贯操作
- where
- table
- data
- order
- field
- limit
- page
- group
- having
- join
- tabname
- union
- sql
- link
- link_base
- lock
- CURD 操作
- 写入数据
- 数据删除
- 数据查询
- 数据更新
- 数据统计操作
- count
- sum
- max
- min
- avg
- 操作DEMO
- CurdTrait.php
- 项目Model层操作表.md
- Curl类
- Method类
- SslAes类
- layui_zqadmin