AngularJS学习笔记

2016-04-19  本文已影响893人  JenniferYe

简介:

AngularJS 是一个 JavaScript 框架。它可通过 <script> 标签添加到 HTML 页面。

<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>

AngularJS 通过 指令 扩展了 HTML,且通过 表达式 绑定数据到 HTML。
扩展:

<div ng-app="">  
    <p>名字 : <input type="text" ng-model="name"></p>   
    <h1>Hello {{name}}</h1>
</div>

AngularJS 表达式
AngularJS 表达式写在双大括号内:{{ expression }}
AngularJS 表达式把数据绑定到 HTML,这与 ng-bind 指令有异曲同工之妙。
AngularJS 将在表达式书写的位置"输出"数据。
AngularJS 表达式 很像 JavaScript 表达式:它们可以包含文字、运算符和变量。

AngularJS 应用
AngularJS 模块(Module) 定义了 AngularJS 应用。
AngularJS 控制器(Controller) 用于控制 AngularJS 应用。
ng-app指令定义了应用, ng-controller 定义了控制器。

<div ng-app="myApp" ng-controller="myCtrl">
    名: <input type="text" ng-model="firstName"><br>
    姓: <input type="text" ng-model="lastName"><br>
<br>
    姓名: {{firstName + " " + lastName}}
</div>
<script>
    var app = angular.module('myApp', []);
    app.controller('myCtrl', function($scope) {    
        $scope.firstName= "John";
        $scope.lastName= "Doe";
    });
</script>

AngularJS 表达式 与 JavaScript 表达式

重复 HTML 元素
ng-repeat 指令会重复一个 HTML 元素:

<div ng-app="" ng-init="names=['Jani','Hege','Kai']">
  <p>使用 ng-repeat 来循环数组</p>
  <ul>
    <li ng-repeat="x in names">
      {{ x }}
    </li>
  </ul>
</div>

ng-init 指令
ng-init 指令为 AngularJS 应用程序定义了 初始值
通常情况下,不使用 ng-init。
ng-model 指令

创建自定义的指令

除了 AngularJS 内置的指令外,我们还可以创建自定义指令。你可以使用 .directive 函数来添加自定义的指令。要调用自定义指令,HTMl 元素上需要添加自定义指令名。
使用驼峰法来命名一个指令, runoobDirective, 但在使用它时需要以 - 分割, runoob-directive:

<body ng-app="myApp">
    <runoob-directive></runoob-directive>
<script>
    var app = angular.module("myApp", []);
    app.directive("runoobDirective", function() {
        return {
            template : "<h1>自定义指令!</h1>"
        };
});
</script>
</body>

你可以通过以下方式来调用指令:

注意: 你必须设置 restrict 的值为 "C" 才能通过类名来调用指令

注意: 我们需要在该实例添加 replace 属性, 否则评论是不可见的。
注意: 你必须设置 restrict 的值为 "M" 才能通过注释来调用指令。

限制使用
你可以限制你的指令只能通过特定的方式来调用。
restrict 值可以是以下几种:

restrict 默认值为 EA, 即可以通过元素名和属性名来调用指令。

表单验证<AngularJs>

在看教程的时候发现了

<form ng-app="" name="myForm">
    Email:
    <input type="email" name="myAddress" ng-model="text">
    <span ng-show="myForm.myAddress.$error.email">不是一个合法的邮箱地址</span>
</form>

觉得很神奇。

应用状态
ng-model 指令可以为应用数据提供状态值(invalid, dirty, touched, error)

 <form ng-app="" name="myForm" ng-init="myText = 'test@runoob.com'">
 Email:    <input type="email" name="myAddress" ng-model="myText" required>
    <h1>状态</h1>
    {{myForm.myAddress.$valid}}
    {{myForm.myAddress.$dirty}}
    {{myForm.myAddress.$touched}}
</form>

CSS 类
ng-model 指令基于它们的状态为 HTML 元素提供了 CSS 类:

<style>
input.ng-invalid {
    background-color: lightblue;
}
</style>
    <form ng-app="" name="myForm">
    输入你的名字:
    <input name="myAddress" ng-model="text" required>
   </form>

ng-model 指令根据表单域的状态添加/移除以下类:

AngularJS 控制器

AngularJS 应用程序被控制器控制。
ng-controller 指令定义了应用程序控制器。
控制器是 JavaScript 对象,由标准的 JavaScript 对象的构造函数 创建。

AngularJS 过滤器

过滤器可以使用一个管道字符(|)添加到表达式和指令中。
管道字符

<div ng-app="myApp" ng-controller="personCtrl">
    <p>姓名为 {{ lastName | uppercase }}</p>
</div>

向指令添加过滤器

<ul>
  <li ng-repeat="x in names | orderBy:'country'">
    {{ x.name + ', ' + x.country }} 
 </li>
</ul>

过滤输入
输入过滤器可以通过一个管道字符(|)和一个过滤器添加到指令中,该过滤器后跟一个冒号和一个模型名称。
filter 过滤器从数组中选择一个子集

<p><input type="text" ng-model="mtest"></p>
<ul>
  <li ng-repeat="x in names | filter:mtest | orderBy:'country'">
    {{ (x.name | uppercase) + ', ' + x.country }}
  </li>
</ul>

AngularJS 服务(Service)

AngularJS 中你可以创建自己的服务,或使用内建服务。
什么是服务?
在 AngularJS 中,服务是一个函数或对象,可在你的 AngularJS 应用中使用。
AngularJS 内建了30 多个服务。
有个 $location 服务,它可以返回当前页面的 URL 地址。

为什么使用服务?
$http 是 AngularJS 应用中最常用的服务。服务向服务器发送请求,应用响应服务器传送过来的数据。
AngularJS 会一直监控应用,处理事件变化, AngularJS 使用 $location 服务比使用 window.location 对象更好。

var app = angular.module('myApp',[]);
    app.controller('myCtrl', function($scope, $http) {   
         $http.get("welcome.htm").then(function (response) { 
         $scope.myWelcome = response.data; 
   });
});
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $timeout) {     
    $scope.myHeader = "Hello World!";
    $timeout(function () {         
       $scope.myHeader = "How are you today?";
    }, 2000);
});
var app = angular.module('myApp', []);
    app.controller('myCtrl', function($scope, $interval) {    
        $scope.theTime = new Date().toLocaleTimeString();    
        $interval(function () {
            $scope.theTime = new Date().toLocaleTimeString();
    }, 1000);
});
创建名为**hexafy** 的访问:
app.service('hexafy', function() {
    this.myFunc = function (x) {
        return x.toString(16);
    }});
使用自定义的的服务 **hexafy** 将一个数字转换为16进制数:
app.controller('myCtrl', function($scope, **hexafy**) {
    $scope.hex = **hexafy**.myFunc(255);
});
在过滤器 **myFormat** 中使用服务 **hexafy**:
app.filter('myFormat',['hexify', function(hexify){ 
   return function(x) { 
       return hexify.myFunc(x);
    };
}]);

AngularJS XMLHttpRequest

$http 是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。

$http.get("");

AngularJS Select(选择框)

<select ng-model="selectedName" ng-options="x for x in names"></select>
app.controller('myCtrl', function($scope) {
    $scope.names = ["Google", "Runoob", "Taobao"];
});
<select>
<option ng-repeat="x in names">{{x}}</option>
</select>

ng-repeat 指令是通过数组来循环 HTML 代码来创建下拉列表,但 ng-options 指令更适合创建下拉列表,它有以下优势:
使用 ng-options 的选项的一个对象, ng-repeat 是一个字符串。

AngularJS 表格

ng-repeat 指令可以完美的显示表格。

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>

AngularJS HTML DOM

<div ng-app="" ng-init="mySwitch=true">
    <p><button ng-disabled="mySwitch">点我!</button></p>
    <p><input type="checkbox" ng-model="mySwitch">按钮</p>
    <p>{{ mySwitch }}</p>
</div>
<div ng-app="">
    <p ng-show="true">我是可见的。</p>
    <p ng-show="false">我是不可见的。</p>
</div>
<div ng-app="">
    <p ng-hide="true">我是不可见的。</p>
    <p ng-hide="false">我是可见的。</p>
</div>

AngularJS 事件

<button ng-click="count = count + 1">点我!</button>
<p>{{ count }}</p>

AngularJS 模块

模块定义了一个应用程序。
模块是应用程序中不同部分的容器。
模块是应用控制器的容器。
控制器通常属于一个模块。

<script>
var app = angular.module("myApp", []); 
</script>

在模块定义中 [] 参数用于定义模块的依赖关系。中括号[]表示该模块没有依赖,如果有依赖的话会在中括号写上依赖的模块名字。

var app = angular.module("myApp", []);
    app.controller("myCtrl", function($scope) { 
       // statement; 
});

AngularJS 包含

在 AngularJS 中,你可以在 HTML 中包含 HTML 文件。

<body><div class="container">
  <div ng-include="'myUsers_List.htm'"></div>
      <div ng-include="'myUsers_Form.htm'"></div>
</div>
</body>

AngularJS 动画

AngularJS 提供了动画效果,可以配合 CSS 使用。
AngularJS 使用动画需要引入 angular-animate.min.js 库。

<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular-animate.min.js"></script>

还需在应用中使用模型 ngAnimate

<body ng-app="ngAnimate">

以上是AngularJS菜鸟教程的整理,下面会是一些在使用Angular过程中学习到的新东西

ng-class的用法

上一篇下一篇

猜你喜欢

热点阅读