tp模型的操作方法
Posted 二年后的今天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp模型的操作方法相关的知识,希望对你有一定的参考价值。
一、新建的模型名和表名一样,采用驼峰式,如表名user_type模型取名为UserType
namespace app\index\model;
use think\Model;
class UserType extends Model
{
}
--------------
控制器调用方法如下
use app\index\model\UserType;
//插入方法一
/*
$user=new User;
$user->username=‘hehe‘;
$user->password=‘123456‘;
$user->status=‘1‘;
$user->save();
*/
//插入方法二
/*
$data[‘username‘]=‘test‘;
$data[‘password‘]=‘pass‘;
User::create( $data);
*/
以上是关于tp模型的操作方法的主要内容,如果未能解决你的问题,请参考以下文章
TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段