码迷,mamicode.com
首页 > 其他好文 > 详细

网上图书商城2--Category模块

时间:2016-12-04 06:50:18      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:public   class   name   lan   ems   hand   from   com   reference   

技术分享

sql

CREATE TABLE `t_category` (
  `cid` char(32) NOT NULL,
  `cname` varchar(50) DEFAULT NULL,
  `pid` char(32) DEFAULT NULL,
  `desc` varchar(100) DEFAULT NULL,
  `orderBy` int(11) NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`cid`),
  UNIQUE KEY `cname` (`cname`),
  KEY `FK_t_category_t_category` (`pid`),
  KEY `orderBy` (`orderBy`),
  CONSTRAINT `FK_t_category_t_category` FOREIGN KEY (`pid`) REFERENCES `t_category` (`cid`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8;

  

Dao

public List<Category> findAll() throws SQLException {
	/*
	 * 1. 查询出所有一级分类
	 */
	String sql = "select * from t_category where pid is null order by orderBy";
	List<Map<String,Object>> mapList = qr.query(sql, new MapListHandler());
	
	List<Category> parents = toCategoryList(mapList);
	
	/*
	 * 2. 循环遍历所有的一级分类,为每个一级分类加载它的二级分类 
	 */
	for(Category parent : parents) {
		// 查询出当前父分类的所有子分类
		List<Category> children = findByParent(parent.getCid());
		// 设置给父分类
		parent.setChildren(children);
	}
	return parents;
}

  

left.jsp

Q6MenuBar组件显示手风琴式下拉菜单

<script language="javascript">
$(function() {
....
<c:forEach items="${parents}" var="parent">
  <c:forEach items="${parent.children}" var="child">
	bar.add("${parent.cname}", "${child.cname}", "/goods/BookServlet?method=findByCategory&cid=${child.cid}", "body");
  </c:forEach>
</c:forEach>

});
</script>

  

网上图书商城2--Category模块

标签:public   class   name   lan   ems   hand   from   com   reference   

原文地址:http://www.cnblogs.com/ganchuanpu/p/6130037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!