基于thinkphp5的书店管理系统学习笔记分享
1.访问url入口
http://localhost:8080/tp5_book/public/index.php/模块名/控制器名/方法名
2.视图页面引用公共html
在view下新建一个public文件,保存公共html文档 {include file="public/_head"}<!--引用公共html--> {include file="public/_left"}<!--引用公共左侧html-->
3.{}的使用
访问:https://www.cnblogs.com/tine/p/8856517.html了解详情 带参数的跳转 {:url('goods/detail',array('id'=>$vo.id))}
4.分页查询
控制器方法 public function index(){ $result=db('user') ->order('time Desc')//排序,asc:升序排列,desc:降序排列 ->paginate(2);//分页 $this->assign('user',$result);//将信息分配到前端模板 return view(); } 视图调用 {foreach $user as $vo} <tr> <td>{$vo.id}</td> </tr> {/foreach} <tr> <td>{$user->render()}</t