angularJS使用內建服務

來源:互聯網
上載者:User

標籤:blog   非同步作業   alt   順序   func   oca   orderby   定義   derby   

<!DOCTYPE html><html><head>    <meta charset="utf-8">    <script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body ng-app="myApp"  ng-controller="myCtrl">    <div >        <p>名字 : <input type="text" ng-model="firstName" ng-bind="firstName"></p>        <p>名字 : <input type="text" ng-model="lastName" ng-bind="lastName"></p>        <p>輸入過濾 : <input type="text" ng-model="text" ng-bind="text"></p>        <p>當前頁面地址 : <span>{{pageUrl}}</span></p>        <p>Get請求返回 : <span>{{response}}</span></p>        <span>順延強制:{{timeOutState}}</span>        <span>目前時間:{{dateTime}}</span>        <span>{{(firstName|lowercase)+" "+lastName}}</span>         <span>{{5|currency}} </span>     </div>    <ul>        <li ng-repeat="x in names |filter: text |orderBy:country">            {{x.name+‘,‘+(x.country|reverse)}}        </li>    </ul>    <script>       //angular使用內建服務展示 服務物件需要傳遞參數接收 只要參數名稱對的上就行        var app = angular.module(‘myApp‘, []);        app.controller(‘myCtrl‘, function ($scope, $location, $http, $timeout, $interval) {            //執行一個請求 回調在then中執行 延續了jq風格將非同步作業線性編寫完成            $http.get("Handler1.ashx").then(function (response) {                $scope.response = response.data;            });            $scope.firstName = "firstName";            $scope.lastName = "lastName";            $scope.names = [                { ‘name‘: ‘s1‘, ‘country‘: ‘china‘ },                { ‘name‘: ‘s2‘, ‘country‘: ‘america‘ },                 { ‘name‘: 5, ‘country‘: ‘america‘ },            ];            //$location服務使用 擷取當前頁面的完整url            $scope.pageUrl = $location.absUrl();            //執行一個順延強制函數             $timeout(function () {                $scope.timeOutState = ‘執行成功‘;            }, 3000);            //執行一個定時器             $interval(function () {                $scope.timeOutState = (new Date());            }, 1000)        });        //自訂一個過濾器反轉字元順序的過濾器        app.filter(‘reverse‘, function () {            return function (text) {                return text.split("").reverse().join("");            }        })    </script></body></html>

  

 

angularJS使用內建服務

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.