• 指令过滤器orderBy


    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta http-equiv="X-UA-Compatible"content="IE=edge" />
    <meta name="viewport" content="width=device-width,initial-scale=1" />

    <title></title>
    <meta charset="utf-8" />
    <link rel="stylesheet"href="bootstrap-3.3.6-dist/css/bootstrap.min.css" />
    </head>
    <body>
    <div class="container"style="padding:50px">
    <div data-ng-app="myApp"data-ng-controller="myCtrl">
    <ul>
    <li data-ng-repeat="x in person | orderBy:'age'">{{x.name+" "+x.age}}</li>
    </ul>
    </div>
    </div>
    <script src="jQuery/jquery-2.1.4.min.js"></script>
    <script src="bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
    <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
    <script>
    angular.module("myApp", []).controller("myCtrl", function ($scope) {
    $scope.person = [
    { name: "zhangsan", age: 33 },
    { name: "lisi", age: 32 },
    { name: "wangwu", age: 36 },
    { name: "zhaoliu", age: 28 },
    {name:"mazi",age:30},

    ]
    })
    </script>
    </body>
    </html>

  • 相关阅读:
    解析库之 beautifulsoup模块
    请求库之 selenium模块
    请求库之 requests模块
    一句话
    JPA学习03
    JPA学习02
    JPA学习01
    SpringData学习04
    SpringData学习03
    SpringData学习02
  • 原文地址:https://www.cnblogs.com/melao2006/p/5086544.html
Copyright © 2020-2023  润新知