angular.js - angular表格点击序号进行升序,降序排序,怎么实现。
PHP中文网
PHP中文网 2017-05-15 17:03:36
0
2
661

序号 内容 姓名 地点 时间 序号
{{$index + 1}} {{$index + 1}} {{$index + 1}} {{$index + 1}} {{x.Name}} {{x.City}} {{x.Country}} {{x.Country + x.City}} {{x.id}}

//js文件 

怎么实现点击序号进行升序降序的排序,新手,求详细的代码,谢谢大家。

PHP中文网
PHP中文网

认证0级讲师

reply all (2)
为情所困

htmlChange to:

序号 内容 姓名 地点 时间 序号
{{$index + 1}} {{$index + 1}} {{$index + 1}} {{$index + 1}} {{x.Name}} {{x.City}} {{x.Country}} {{x.Country + x.City}} {{x.id}}

js

//js文件 
    習慣沉默

    You can use the filter orderBy:'id':desc to control whether the sorting is ascending or descending order.
    The following code is easier to understand if you read it in the order of 3-2-1.
    1. Click once to change desc

    序号

    2. Set desc initialization value = 0 in appController

    $scope.desc = 0;

    3. Add sorting conditions to the filter

      Latest Downloads
      More>
      Web Effects
      Website Source Code
      Website Materials
      Front End Template
      About us Disclaimer Sitemap
      php.cn:Public welfare online PHP training,Help PHP learners grow quickly!