时间:2023-04-21 07:30:01 | 来源:网站运营
时间:2023-04-21 07:30:01 来源:网站运营
ThinkPHP6 模型基础操作详解:表前缀设置:config/database.php
文件里prefix
model
model
创建 Goods.php
文件在模型中除了可以调用数据库类的方法之外(换句话说,数据库的所有查询构造器方法模型中都可以支持),可以定义自己的方法,所以也可以把模型看成是数据库的增强版
thinkphp
方法一样名称Goods::
也可以用 static::
关键词find
查询数据find
获取单条数据,返回的是当前模型的对象实例namespace app/model;use think/Model;class Goods extends Model{ public function find(){ $find = Goods::where('id',7)->find(); return $find; }}
controller
怎么调用model
namespace app/controller;use app/model/Goods;class Index{ public function index(){ $db = new Goods(); $index = $db->find(); print_r($index); }}
find(主键id) 查询,只使用数据表主键为id的使用,主键非id会查询失败
select
查询数据select
获取多条数据,返回的是当前模型的对象实例public function select(){ $select = Goods::select(); $select = Goods::select(6); $select = Goods::where('id','>',7)->select(); return $select;}
toArray
方法将当前的模型实例输出为数组public function select(){ $select = Goods::select(); $select = Goods::select(6); $select = Goods::where('id','>',7)->select(); return $select->toArray();}
create
静态方法添加数据,返回的是当前模型的对象实例public function create(){ $create = Goods::create([ 'cat' => 3, 'title' => '新商品', 'price' => '59.99', 'add_time' => time() ]); echo $create->id; // 可以直接获取自增id return $create;}
新增数据的最佳实践原则:使用create方法新增数据,使用saveAll批量新增数据。
update
静态方法修改数据,返回的是当前模型的对象实例save
在取出数据后,更改字段更新数据。这种方式是最佳的更新方式namespace app/model;use think/Model;class Goods extends Model{ public function update(){ # 更新方式1 $update = Goods::update( ['price'=>'99.99'], ['id'=>22] ); return $update; # 更新方式2 $user = Goods::find(23); $user->price = '102.99'; $save = $user->save(); return $save; }}
delete
静态方法删除数据,返回的是当前模型的对象实例destroy
根据主键删除public function delete(){ # 删除方法1 $delete = Goods::where('id',3)->delete(); # 删除方法2 $delete = User::destroy(4); return $delete;}
name
和table
class Goods extends Model{ protected $name = 'Admin'; protected $table = 'shop_admin'; public function select(){ $select = Goods::select(); return $select->toArray(); }}
pk
改变主键名称model
默认的主键是idclass Goods extends Model{ protected $name = 'Admin'; protected $table = 'shop_admin'; protected $pk = 'uid'; public function find($id=1){ $find = Goods::find($id); return $find->toArray(); }}
schema
设置模型对应数据表字段及类型schema
属性一旦定义,就必须定义完整的数据表字段类型class Goods extends Model{ protected $name = 'Goods'; protected $table = 'shop_goods'; protected $pk = 'shop_id'; protected $schema = [ 'shop_id' => 'int', 'cat' => 'int', 'title' => 'string', 'price' => 'float', 'discount' => 'int', 'stock' => 'int', 'status' => 'int', 'add_time' => 'int' ]; # 对某个字段定义需要自动转换的类型,可以使用type属性 protected $type = [ 'shop_id' => 'int' ]; public function select(){ $select = Goods::select(); return $select->toArray(); }}
disuse
数据表废弃字段(数组)class Goods extends Model{ protected $name = 'Goods'; protected $table = 'shop_goods'; protected $pk = 'shop_id'; protected $disuse = [ 'discount', 'stock' ]; public function select(){ $select = Goods::select(); return $select->toArray(); }}
get
+ 字段名 + Attr
class Goods extends Model{ public function index(){ $find = Goods::find(10); echo $find->status; return $find->toArray(); } public function getStatusAttr($v){ $status = [ 1=>'开启', 2=>'关闭' ]; return $status[$v]; }}
set
+ 字段名 + Attr
class Goods extends Model{ public function index(){ $create = Goods::create([ 'cat' => 3.33, 'title' => '新商品', 'price' => '59.99', 'add_time' => time() ]); return $create; } public function setCatAttr($v,$all){ // $all 全部参数 return (int)$v; }}
search
+ 字段名 + Attr
class Goods extends Model{ public function index(){ $select = Goods::withSearch(['title'],[ 'title' => '新' ])->select(); return $select->toArray(); } public function searchTitleAttr($query,$v){ $query->where('title','like', $v . '%'); }}
empty
判断isEmpty
方法判断class Goods extends Model{ public function index(){ $select = Goods::where('title','1')->select(); if(empty($select)){ echo 111; } if($select->isEmpty()){ echo 111; } }}
视频教程地址:第二十节thinkphp6模型的基础配置 关键词:操作,基础,模型