企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 1、创建用户数据表:user ![](https://img.kancloud.cn/03/4b/034b02598e5303074b390b9ac5461a10_718x372.png) ![](https://img.kancloud.cn/4a/df/4adf7e03d1a1b3deac8803acc452b6df_733x312.png) ## 2、准备工作 将用户的视图文件,复制到 Admin\View\User目录中 ![](https://img.kancloud.cn/83/af/83af88462bff6f1e335ff79870418ee4_626x203.png) 修改用户视图文件中静态资源路径 ![](https://img.kancloud.cn/a7/82/a7822998d73b248552bbe52848f5100c_850x66.png) 修改左侧框架关于用户管理的链接地址 ![](https://img.kancloud.cn/97/0a/970a206ee96a6f724d0325c0adc917a6_768x227.png) ## 3、显示用户列表 (1)用户控制器UserController添加index()方法 ![](https://img.kancloud.cn/93/c8/93c8f20f108fc79a55e5b6d1342a400b_679x444.png) (2)用户模型类UserModel 将常用的方法(fetchOne、fetchAll、update、delete、insert、rowCount),提升到基础模型类中 ![](https://img.kancloud.cn/47/f8/47f864acafca85a7a4cb45f9afe12fb1_612x236.png) (3)用户首页视图文件:index.html ![](https://img.kancloud.cn/ed/12/ed12febe114a129baafd5da5804cecb5_977x462.png) ![](https://img.kancloud.cn/52/78/5278c6852b612aed6cdac7581d92d434_838x372.png) ## 4、删除用户信息 (1)用户首页视图文件:index.html ![](https://img.kancloud.cn/15/7c/157cd7974c60d1f489bbfe1293b34cf3_756x405.png) (2)用户控制器UserController添加delete()方法 ![](https://img.kancloud.cn/74/f5/74f5579423ccb1b6b0d8ff91dc612b58_681x312.png) ## 5、添加用户信息(用户注册) (1)用户首页视图文件:index.html ![](https://img.kancloud.cn/27/ac/27acb6e4809b14ac9ab508627a0eaa13_498x249.png) (2)用户控制器UserController添加add()方法 ![](https://img.kancloud.cn/a8/a0/a8a058db382b900122c4f538d2345950_626x115.png) (3)添加用户视图文件:add.html ![](https://img.kancloud.cn/e4/cb/e4cb679d9b5089422e1d45dc6970d277_820x198.png) (4)用户控制器UserController添加insert()方法 ![](https://img.kancloud.cn/aa/f2/aaf22a8ee98c93bf00fc180c041bc60f_867x381.png) ![](https://img.kancloud.cn/cc/d2/ccd24eab3d2bbffca3e6faa4b9966306_885x311.png) ## 6、修改用户信息 (1)用户首页视图文件:index.html ![](https://img.kancloud.cn/f6/42/f6421e14afdc522f85edd3ae4c60c29f_742x178.png) (2)用户控制器UserController添加edit()方法 ![](https://img.kancloud.cn/fe/ce/fece2ce2c714635f4b64dfd0f00d571b_656x246.png) (3)修改用户视图文件:edit.html ![](https://img.kancloud.cn/66/98/66989b4061c228f7ea4fad1d819587ee_815x330.png) (4)用户控制器UserController添加update()方法 ![](https://img.kancloud.cn/18/5d/185d58618061a7eba5e14b94d1f0a7d4_832x423.png) ![](https://img.kancloud.cn/62/6b/626b2889a3eff1c73e2f914da004eb3b_835x186.png)