TP5.0框架中简单CURD操作

第一步:在浏览器中运行框架,完毕后。在application/index中新建model目录和view目录(view目录里并建index目录)。然后在application里的database.php里配置数据库名 用户名 密码。

第二步:在model目录里新建User.php模型层.

User.php中内容为:

namespace app\index\model;



use think\Db;//引入Db
use think\Model;//引入Model



class User extends Model
{

protected $table='user';//表名


//增加
function insertData($data)
{

return Db::table($this->table)->insertGetId($data);
}
//查询
function show()
{
return Db::table($this->table)->select();    
}
//删除
function deleteData($id)
{
return Db::table($this->table)->where('uid','=',$id)->delete();    
}
//查询单条
function findData($id)
{
return Db::table($this->table)->where('uid','=',$id)->find();    
}
//修改
function updateData($data,$id)
{
return Db::table($this->table)->where('uid','=',$id)->update($data);    
}
}
?>

第三步:controller目录里控制器index.php里面内容为:

namespace app\index\controller;


use think\controller;//引入控制器
use think\Request;//引入request
use app\index\model\User;//引入模型层
header("content-type:text/html;charset=UTF-8");//防乱码
class Index
{
    //表单页面
    public function index()
    {
        //echo 123;
        //return '

:)

ThinkPHP V5
十年磨一剑 - 为API开发设计的高性能框架

[ V5.0 版本由 七牛云 独家赞助发布 ]
';
        return view();
    }
    //添加
    public function insert()
    {
        
        $Request=Request::instance();//调用Request中instance方法
        $data=$Request->post();//接值
        //print_r($data);
        $user=new User;//实例化model
        $result=$user->insertData($data);//执行添加语句
        if($result)
        {   
            return Redirect('Index/show');
            //echo "";
            //$this->success('新增成功','Index/show');
        }else{
            $this->error('新增失败');
        }

    }
   //展示
   public function show()
   {
     $user=new User;//实例化model
     $arr=$user->show();//执行查询
     return view('show',['arr'=>$arr]);
   }
   //删除
   public function delete()
   {
   $Request=Request::instance();
   $id=$Request->get('id');
   $user=new User;
   $result=$user->deleteData($id);
   if($result)
   {
    return Redirect('Index/show');
   }else{
    $this->error('删除失败');
   }
   }
   //修改页面
   public function update()
   {
    $Request=Request::instance();
    $id=$Request->get('id');
    $user=new User;
    $res=$user->findData($id);//查询单条
    //print_r($res);die;
    return view('update',['res'=>$res]);
   }
   //执行修改
   public function save()
   {
    $Request=Request::instance();
    $id=$Request->post('uid');
    $Request=Request::instance();
    $data=$Request->post();//接修改之后的数据
    $user=new User;
    $result=$user->updateData($data,$id);//修该语句
    if($result)
    {
    return Redirect('Index/show');
    }else{
        $this->error('修改失败');
    }


   }

}

 第四步:在视图层index目录里新建index.html show.html update.html里面内容分别为:

index.html中:




   
    用户注册




   
       
           
           
       
       
           
           
       
       
           
           
       
   
用户名
密码


    

show.html中:




   
    用户列表


   


       
           
               
               
               
               
           
            {volist name="arr" id="vo"}
           
               
               
               
               
           
            {/volist}
       
ID用户名密码操作
{$vo.uid}{$vo.username}{$vo.password}删除||修改

   


update.html中:




   
    修改信息


 


 
    

    
         
       
            
            
                
                
            
            
                
                
            
            
                
                
            
        
用户名
密码

    

 


注意:TP5.0中路由配置规则是在route.php中写入return['hello/[:name]'=>'index/hello',]//其中index是控制器名,hello是方法名

你可能感兴趣的:(TP)