技术汇总:第五章:使用angularjs做首页三级分类

简介: 技术汇总:第五章:使用angularjs做首页三级分类

页面:

<script type="text/javascript" src="plugins/angularjs/angular.min.js"></script>
<script type="text/javascript" src="js/service/userService.js"></script>
<script type="text/javascript" src="js/controller/userController.js"></script>
<div class="item bo" ng-repeat="entity in list">
<!-- 去重 -->
  <h3><a href=""  ng-hide="list[$index].catOneName == list[$index+1].catOneName">{{entity.catOneName}}</a></h3> 
  <div class="item-list clearfix">
  <div class="subitem">
  <dl class="fore">
<!-- 去重 -->
  <dt><a href="" ng-hide="list[$index].catTwoName == list[$index+1].catTwoName">{{entity.catTwoName}}</a></dt>
    <dd><em><a href="">{{entity.catThreeName}}</a></em></dd>
  </dl>
  </div>
  </div>
</div>

实体类:

public class TbItemCat implements Serializable{
    private Long id;
    private Long parentId;
    private String name;
    private Long typeId;

sql做自连接查询:

mapper.xml

  <select id="selectAll" resultType="java.util.HashMap">
    SELECT 
    cat1.`id` catOneId,cat1.`name` catOneName,cat1.`parent_id` parentIdOne,cat2.id catTwoId,cat2.`name` catTwoName,cat2.`parent_id` parentIdTwo,cat3.id catThreeId,cat3.`name` catThreeName,cat3.`parent_id` parentIdThree
    FROM tb_item_cat cat1,tb_item_cat cat2,tb_item_cat cat3 
    WHERE cat1.`id`=cat2.`parent_id` AND cat2.id=cat3.`parent_id`
  </select>

mapper接口:

List<Map<String,TbItemCat>> selectAll();

impl实现类:

 @Override
    public List<Map<String,TbItemCat>> selectAll() {
        List<Map<String,TbItemCat>> selectAll = itemCatMapper.selectAll();
        return selectAll;
    }

controller控制层:

   @RequestMapping("/findAll")
    public List<Map<String,TbItemCat>> findAll(){
        List<Map<String,TbItemCat>> selectAll = itemCatService.selectAll();
        return selectAll;
    }

contentController.js


/

app.controller("contentController",function($scope,contentService){
    $scope.list = [];
    $scope.findAll=function(){
        contentService.findAll().success(function(response){
            //将相应的数据放到list里面
            $scope.list = response;
        });
    }
});

contentService.js

app.service("contentService",function($http){ 
    this.findAll = function(){
        return $http.get("content/findAll.do");
    }
});

控制层获取的数据和数据库的数据一样,一条一条的用list集合接收,但是发现页面经过去重之后,数据不对,换了另一种思路

创建一级分类的实体类

public class TbItemCatOneExample  implements Serializable {
    private Long id;
    private Long parentId;
    private String name;
    private Long typeId;
    private List<TbItemCat> tbItemCats2;

创建二级分类的实体类

public class TbItemCatTwoExample implements Serializable{
  private Long id;
    private Long parentId;
    private String name;
    private Long typeId;
    private List<TbItemCat> tbItemCats3;

创建三级分类实体类

public class TbItemCat implements Serializable{
    private Long id;
    private Long parentId;
    private String name;
    private Long typeId;

控制层controller

  @RequestMapping("/findAll")
  public List<TbItemCatOneExample> findAll(){
    List<TbItemCatOneExample> selectAll = itemCatService.selectAll();
    System.out.println(selectAll);
    return selectAll;
  }

service接口

    /**
     * 首页三级分类
     * @return
     */
    public List<TbItemCatOneExample> selectAll();

serviceImpl实现类

  @Override
  public List<TbItemCatOneExample> selectAll() {
    //从库中获取的数据
    List<TbItemCatOneExample> selectAll = itemCatMapper.selectAll();
    return selectAll;
  }

mapper接口

List<TbItemCatOneExample> selectAll();

mapper.xml

   <resultMap id="BaseResultMap1" type="com.pinyougou.pojo.TbItemCatOneExample" >
    <id column="catOneId" property="id" jdbcType="BIGINT" />
    <result column="parentIdOne" property="parentId" jdbcType="BIGINT" />
    <result column="catOneName" property="name" jdbcType="VARCHAR" />
    <collection property="tbItemCats2" ofType="com.pinyougou.pojo.TbItemCatTwoExample" javaType="java.util.ArrayList">
      <id column="catTwoId" property="id" jdbcType="BIGINT" />
      <result column="parentIdTwo" property="parentId" jdbcType="BIGINT" />
      <result column="catTwoName" property="name" jdbcType="VARCHAR" />
            <collection property="tbItemCats3" ofType="com.pinyougou.pojo.TbItemCat" javaType="java.util.ArrayList">
        <id column="catThreeId" property="id" jdbcType="BIGINT" />
        <result column="parentIdThree" property="parentId" jdbcType="BIGINT" />
        <result column="catThreeName" property="name" jdbcType="VARCHAR" />
      </collection>
    </collection>
  </resultMap>
  <select id="selectAll" resultMap="BaseResultMap1">
    SELECT 
    cat1.`id` catOneId,cat1.`name` catOneName,cat1.`parent_id` parentIdOne,cat2.id catTwoId,cat2.`name` catTwoName,cat2.`parent_id` parentIdTwo,
    cat3.id catThreeId,cat3.`name` catThreeName,cat3.`parent_id` parentIdThree
    FROM tb_item_cat cat1,tb_item_cat cat2,tb_item_cat cat3 
    WHERE cat1.`id`=cat2.`parent_id` AND cat2.id=cat3.`parent_id`
  </select>

在控制台获取到想要的数据了




但是页面展示发现angularjs不能再class中传递,需要修改样式,去除class,有点小尴尬

页面

<div  ng-repeat="entity in list">
  <h3><a href=""  >{{entity.name}}</a></h3> 
  <div  ng-repeat="cat2 in entity.tbItemCats2" >
  <div   >
  <dl  >
  <dt><a href="" >{{cat2.name}}</a></dt>
  <dd  ng-repeat="cat3 in cat2.tbItemCats3"><em><a href="">{{cat3.name}}</a></em></dd>
  </dl>
  </div>
  </div>
</div>
相关文章
|
6月前
|
JavaScript 前端开发 UED
AngularJS路由管理:深度解析$routeProvider的应用与实践
【4月更文挑战第28天】本文深入解析AngularJS的$routeProvider,它是AngularJS路由系统的关键,用于定义应用的视图和路径。通过routeProvider,开发者能根据URL变化动态加载内容,实现单页应用效果。配置$routeProvider涉及导入angular-route.js,注入&quot;ngRoute&quot;依赖,并使用when方法定义路由规则。ng-view指令用于显示路由打开的页面,而otherwise方法处理未定义路由,提供默认响应。$routeProvider使导航体验优化,助力构建高效Web应用。
|
6月前
|
缓存 前端开发 UED
AngularJS的表单验证:深度探索与实践
【4月更文挑战第28天】本文深入探讨了AngularJS的表单验证,涉及基础用法、自定义规则和性能优化。AngularJS通过表单控制器和指令实现验证,ngModelController处理逻辑并更新错误状态。自定义验证器函数可扩展业务逻辑,性能问题可通过减少无效验证、异步处理和缓存解决。关注用户体验,提供清晰错误提示和一致验证规则至关重要。AngularJS的表单验证功能强大,适配复杂需求,助力构建高效、易用的验证系统。
|
设计模式 前端开发 JavaScript
11分布式电商项目 - AngularJS简介
11分布式电商项目 - AngularJS简介
53 0
|
API
Angular 2.x折腾记 :(7) 初步了解表单:模板驱动及数据驱动及脱坑要点
表单在整个系统中的作用相当重要,这里主要扯下响应表单的实现方式。 首先需要操作表单的模块引入这两个模块; import { FormsModule, ReactiveFormsModule } from '@angular/forms';
170 0
|
Web App开发 存储 移动开发
2013 年 AngularJS 学习资源精选
2014年被认为是AngularJS之年,现在是时候总结一下2013年的AngularJS优秀学习资源,希望能帮助你迎头赶上。只有最好的文章才能榜上有名。
171 0
|
JavaScript 前端开发 开发者
前端必知词汇:AngularJS
AngularJS是一个开发动态Web应用的框架,同时也是一个用 JavaScript 编写的库。它可以通过 script 标签添加到网页中,让用户可以使用HTML作为模板语言并且可以通过扩展的HTML语法来使应用组件更加清晰和简洁。自2009年,由Misko Hevery 等人创建,后为Google所收购。目前已经被用于Google的多款产品当中。
476 0
|
Web App开发 前端开发 JavaScript
Angularjs 地址联动2.1.1
这个地址联动是基于 Angularjs 的 效果图如下: 看着是不是可美观了?哈哈!源码如下: DOCTYPE HTML> Angularjs 地址联动 Angularjs 地址联动2.
1082 0