码迷,mamicode.com
首页 > Web开发 > 详细

angular js

时间:2014-09-14 22:01:07      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   使用   ar   strong   数据   div   sp   

1.控制器  <div ng-app="" ng-controller="personController">

 function personController($scope) {
    $scope.person = {
        firstName: "John",
        lastName: "Doe",

      fullName: function(){

     var x = $scope.person;

   return x.firstName + " "+ x.lastName;
   }

    };
}

控制器也可带有方法,用{{fullName}}调用下面的方法:

$scope.fullName = function() {
var x = $scope.person;
return x.firstName + " " + x.lastName;
}

 

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

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

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

 <p>name:{{person.lastName | uppercase}}</p>  //将lastName中所有的小写变成大写 ,lowercase将所有的大写变成小写

<li ng-repeat="x in names | orderBy:‘country‘">

<li ng-repeat="x in names | filter:name | orderBy:‘country‘">
{{ (x.name | uppercase) + ‘, ‘ + x.country }}
</li>

 

3.AngularJS $http 是一个用于读取web服务器上数据的服务。

$http.get(url) 是用于读取服务器数据的函数。

4.Angularjs html 事件

ng-click 指令定义了一个 AngularJS 单击事件。

 

 

angular js

标签:style   http   io   使用   ar   strong   数据   div   sp   

原文地址:http://www.cnblogs.com/aazhangqq/p/3971731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!