二、商品模块
查询最新和最热商品
查询最新商品dao层,select * from product order by pdate desc limit 0,12;(取12条信息,0可以省略)
查询最新商品dao层:select * from product where is_host=1;
点击分类,查询该分类下的商品功能
Dao层:select * from product where cid=?
技巧:实现某个功能时,需要分析dao层的sql语句有没有必要的条件,如果有必要条件,就需要前台页面向后台参数。
分页的五个基本参数:
当前页码数:currenPage;//从前台页面传递到后台
当前页面显示的记录条数:pageSize;//自己设置
分页的总条数:totalCount;//从数据库查询,select count(*) from product where flag=1;
总页数:totalPage;//有分页的总条数和每页显示的条数