首页 > 代码库 > angularJS使用内置服务
angularJS使用内置服务
<!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个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。