angular控制器

2017-07-21  本文已影响9人  月光在心中

作用域

$rootScope 在声明ng-app的位置创建此作用域

<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" ng-app="myApp"> <!--<![endif]-->
<script src="./angular.min.js"></script>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <title></title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width, initial-scale=1">
    </head>
    <body>
        <!--[if lt IE 7]>
            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
        <![endif]-->
        <div ng-controller="myController">
            {{name}} 
        </div>
        {{name}} 
    </body>
    <script>
        var app = angular.module("myApp",[]);
        app.controller("myController",["$scope",function($scope){
            $scope.name = "zhar";
        }]);
    </script>
</html>

过滤器

currency 货币格式转换
currency:“前缀” 更改指定的前缀,默认是$
lowercase | uppercase 大小写转换
date 日期格式化
数组过滤器
limitTo 限制结果条数
orderBy 排序
orderBy:orderKey 按orderKey升序排列
orderBy:orderKey:true 按orderKey降序排列
filter 按关键字快速过滤
filter:searchKey 过滤所以数据包含 searchKey的内容

上一篇下一篇

猜你喜欢

热点阅读