您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)angularJS有哪些用法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
AngularJS
事件指令:
ng-click/dblclick ng-mousedown/up ng-mouseenter/leave ng-mousemove/over/out ng-keydown/up/press ng-focus/blur ng-submit
和ng-click一樣,都是給dom綁定事件的
需要注意的是,使用事件對(duì)象的時(shí)候,需要在ng-click等指令里傳入$event,如:
<button ng-click="clickFn($event)" class="btn btn-danger">aa</button>
表單指令
ng-change
當(dāng)值發(fā)生改變的時(shí)候就會(huì)有用
有value值的一些個(gè)標(biāo)簽,能ng-model的,才能用喲
必須要ng-model配合使用
可以做數(shù)據(jù)驗(yàn)證
ng-disabled 控制元素是否可用 ng-readonly ng-checked
控制checkbox是否被選中
只設(shè)置這個(gè)只能通過(guò)數(shù)據(jù)來(lái)控制是否選中
設(shè)置ng-model就可以通過(guò)它來(lái)控制數(shù)據(jù)
disabled和readonly的區(qū)別
表單元素都可以通過(guò)設(shè)置disabled或者readonly屬性對(duì)其禁用,disabled設(shè)置了之后,用戶(hù)不可以使用,并且表單不會(huì)提交該字段,readonly
僅是用戶(hù)禁用,也就是說(shuō),用戶(hù)不可操作,但是表單依然會(huì)提交
倒計(jì)時(shí)搶購(gòu)小案例
$interval服務(wù)相當(dāng)于setInterval,可以自動(dòng)進(jìn)行臟數(shù)據(jù)檢驗(yàn)
清除的話(huà)需要賦值然后$interval.cancel(timer)
ng-show 為true顯示。false隱藏
ng-hide 為true 隱藏。false 顯示
ng-if 和ng-show 一樣,只不過(guò)是如果不顯示的時(shí)候,節(jié)點(diǎn)不在dom文檔中
var app = angular.module("myapp",[]) app.controller("myController",function ($scope,$interval) { $scope.num=1 $scope.canBuy = false $scope.time = 5 var timer = $interval(function () { $scope.time--; if($scope.time<=0){ $scope.canBuy=true $interval.cancel(timer) } },1000) })
ng-bind相關(guān)
ng-bind有一個(gè)問(wèn)題,加上之后就不能在數(shù)據(jù)變量后面加別的東東了,這個(gè)標(biāo)簽里面只能顯示這條數(shù)據(jù),其他的就不行了比如
{{name}}---111 用ng-bind-template就好 ng-bind-template="{{name}}---111"
又有問(wèn)題了,不能解析標(biāo)簽
沒(méi)事,用ng-bind-html
ng-bind-html="<h2>{{name}}---111</h2>"
這樣可不行哦,這是1.3前的,從1.3以后大換血的時(shí)候,為了精簡(jiǎn)angular.js,把這個(gè)玩意給弄出去了,得用一個(gè)插件(模塊)
還得在angular.module里面給放進(jìn)"ngSanitize"
然后需要把要顯示的標(biāo)簽掛在一個(gè)變量上,然后設(shè)置給ng-bind-html
$scope.text= "<h2>"+$scope.name+"---111</h2>" ng-bind-html=''text“ ng-non-bindable
這個(gè)指令可以讓表達(dá)式不解析
<h4 ng-non-bindable>{{name}}</h4>
ng-include
可以引入一個(gè)html代碼片段,也需要變量來(lái)定義,代碼片段里也可以寫(xiě)表達(dá)式等
$scope.text='html/a.html'; ng-include='text'
注意,因?yàn)槠鋵?shí)內(nèi)部是ajax請(qǐng)求的,所以需要服務(wù)器環(huán)境下
ng-model-options='{updateOn:'blur'}'
綁定數(shù)據(jù)在顯示的過(guò)程中,內(nèi)部會(huì)一直操作節(jié)點(diǎn),性能不好,可以這樣配置一下,在某個(gè)時(shí)刻去更新視圖顯示的數(shù)據(jù)就ok
AngularJS
ng-controller
可以用面向?qū)ο蟮乃季S來(lái)寫(xiě)controller
<div ng-controller="myController as myFun"> {{name}}<br> {{myFun.age}}<br> {{myFun.sex}} </div> myapp.controller("myController",["$scope",myFun]) function myFun($scope){ $scope.name='allen'; this.sex='male' } myFun.prototype.age="18"
再來(lái)說(shuō)服務(wù),服務(wù)其實(shí)已經(jīng)說(shuō)了很多了。
angularJS中,服務(wù)是用來(lái)通過(guò)某些功能
$http服務(wù)
能進(jìn)行數(shù)據(jù)交互
$http({ url:"http://datainfo.duapp.com/shopdata/getclass.php", method:"get", params:{} }).success(function(data){ $scope.dataList=data; }).error(function(error){ console.log(error) })
method 代表傳遞方法 get、post
url 數(shù)據(jù)接口
params 提交的數(shù)據(jù) 相當(dāng)于$.ajax里的data:{}
success 成功回調(diào)
error 錯(cuò)誤回調(diào)
這里要說(shuō)下JSONP技術(shù)
JSONP是解決跨域問(wèn)題的一種常見(jiàn)方式
跨域問(wèn)題:因?yàn)闉g覽器有同源策略,所以當(dāng)不同域間進(jìn)行數(shù)據(jù)交互的時(shí)候就會(huì)出現(xiàn)跨域問(wèn)題
同源策略:只有在同協(xié)議,同域名,同端口的情況下才能進(jìn)行數(shù)據(jù)交互
JSONP的原理:可以利用script標(biāo)簽(會(huì)使用回調(diào)函數(shù)來(lái)接收數(shù)據(jù))的src屬性不受同源策略的影響,可以請(qǐng)求到不同域的數(shù)據(jù),通過(guò)設(shè)置回調(diào)函
數(shù)來(lái)接收數(shù)據(jù)
JSONP是前后端結(jié)合的跨域方式:因?yàn)榍岸苏?qǐng)求到數(shù)據(jù)后需要在回調(diào)函數(shù)中使用,所以后端得將數(shù)據(jù)放回到回調(diào)函數(shù)中
JSONP屬于AJAX嗎?ajax是指通過(guò)使用xmlhttprequest對(duì)象進(jìn)行異步數(shù)據(jù)交互的技術(shù),jsonp是依靠scriptsrc屬性來(lái)獲取的,不屬于ajax
JSONP有什么缺點(diǎn),使用的時(shí)候需要注意什么?
不能post跨域處理,需要注意的是:每次請(qǐng)求應(yīng)該動(dòng)態(tài)的創(chuàng)建script標(biāo)簽和回調(diào)函數(shù),數(shù)據(jù)獲取完成后銷(xiāo)毀。
如果method是jsonp的話(huà),就可以用jsonp去跨域請(qǐng)求,但是注意要在url后寫(xiě)關(guān)于callback的值為JSON_CALLBACK
百度搜索小例子
這里引用的是 angular-sanitize.js
var app = angular.module("myapp",['ngSanitize']) app.controller("myController",function ($scope,$http) { $http({ url:"http://datainfo.duapp.com/shopdata/getclass.php", method:"post", params:{a:1} }).success(function (results) { $scope.dataList = results }).error(function (error) { console.log(error) }) }) app.controller("yourController",function ($scope,$http) { $scope.search = function () { $http({ url:"https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su", method:"jsonp", params:{ wd:$scope.wd, cb:'JSON_CALLBACK' } }).success(function (results) { $scope.dataList = results.s }) } })
$location服務(wù)
console.log($location.absUrl())//輸出絕對(duì)地址 console.log($location.host())//輸出域名 console.log($location.port())//輸出端口 console.log($location.protocol())//協(xié)議 $location.path("aaa")//在路由中控制切換頁(yè)面 console.log($location.path()) // #/aaa
$log 服務(wù)
多種控制臺(tái)輸出模式
$log.info("info"); $log.warn("warn"); $log.error("error"); $log.log("log");
angularJs對(duì)服務(wù)供應(yīng)商配置
例如
myapp.config(["$interpolateProvider",function($interpolateProvider){ $interpolateProvider.startSymbol("!!"); $interpolateProvider.endSymbol("!!"); }])
angular就不認(rèn)識(shí){{}}了,開(kāi)始變成?。。。?/p>
自定義服務(wù) 三種
1.factory
myapp.factory('serviceName',function(){ return .... })
可以return 字符串、數(shù)組、函數(shù)、對(duì)象(使用最多,最和邏輯)
引入方法和angualr自帶的前面加$的服務(wù)完全一樣,使用方法取決于return出來(lái)的是什么東西,自定義服務(wù)的服務(wù)名還是別加$了
eq:返回一個(gè) 兩個(gè)數(shù)之間的隨機(jī)數(shù)的服務(wù)
myapp.factory("myService",function(){ return { getRandom:function(a,b){ return Math.random()*(b-a)+a; } } })
自定義的服務(wù)可以依賴(lài)注入其他服務(wù)
myapp.factory('myHttpService',['$http',function($http){ return { $http({ url:...... }) } }])
eq:下一個(gè)自定義的http服務(wù)
myapp.factory("myHttpService",["$http",function($http){ return { http:function(url,sfn,efn){ $http({ url:url, method:"get" }).success(sfn).error(efn) } } }]) myHttpService.http("http://datainfo.duapp.com/shopdata/getclass.php",function(data){ console.log(data) },function(data){ console.log(data) })
2.provider
可以通過(guò)去自定義一個(gè)服務(wù)供應(yīng)商去定義一個(gè)服務(wù),寫(xiě)法有區(qū)別,服務(wù)功能性的東西需要嵌套一層返回
myapp. provider ('myHttpService',['$http',function($http){ return { $get:function(){ return:{//這里才是輸出 } } }])
外面return出來(lái)的是這個(gè)服務(wù)的供應(yīng)商,供應(yīng)商的$get方法里返回的才是供我們使用的部分,可以通過(guò)更改供應(yīng)商的部分參數(shù)來(lái)控制服務(wù)的功能,
eq:還是返回一個(gè)范圍內(nèi)的隨機(jī)數(shù),但是通過(guò)配置供應(yīng)商的一個(gè)值來(lái)控制服務(wù)返回的是整數(shù)還是小數(shù)
myapp.provider("myService",function(){ return { isInt:true, $get:function(){ var that=this; return { getRandom:function(a,b){ var num=Math.random()*(b-a+1)+a; if(that.isInt){ return Math.floor(num); }else{ return(num) } } } } } }) myapp.config(["myServiceProvider",function(myServiceProvider){ myServiceProvider.isInt=false; }])
通過(guò)這種方法創(chuàng)建的服務(wù)是可以配置供應(yīng)商的
3.service
通過(guò)這種方法創(chuàng)建出來(lái)的只能是對(duì)象
最簡(jiǎn)單的創(chuàng)建方式,自帶返回,支持面向?qū)ο蟮膶?xiě)法
myapp.service("myService",function(){ this.getRandom=function(a,b){ return Math.random()*(b-a)+a; } }) myapp.service("myService",aaa) function aaa(){ this.getRandom=function(a,b){ return Math.random()*(b-a)+a; } }
多個(gè)控制器間數(shù)據(jù)的共享
實(shí)現(xiàn)多個(gè)控制器數(shù)據(jù)共享的方法有這樣三種,
第一種比較簡(jiǎn)單,就是把數(shù)據(jù)放到父作用域上,就都可以訪(fǎng)問(wèn)了
第二種就是在控制器里通過(guò)$$prevSibling找到兄弟作用域,然后使用數(shù)據(jù),需要注意的是,如果是初始數(shù)據(jù)類(lèi)型的話(huà)就不能做數(shù)據(jù)雙向綁定了
第三種是定義服務(wù),把需要共享的數(shù)據(jù)做成服務(wù),這樣就都可以用了
<body> <div class="container"> <div ng-controller="firstController"> <input type="text" class="form-control" ng-model="name"> <input type="text" class="form-control" ng-model="data.name"> <input type="text" class="form-control" ng-model="Data.name"> <p> first-name:{{name}}<br> first-data-name:{{data.name}}<br> first-Data-name:{{Data.name}} </p> </div> <div ng-controller="secondController"> <p> second-name:{{name}}<br> second-data-name:{{data.name}}<br> second-Data-name:{{Data.name}} </p> </div> </div> </body> <script src="../Base/angular.min.js"></script> <script> var app=angular.module("myapp",[]); app.factory("Data",function () { return { name:'lily' } }) app.controller("firstController",function ($scope,Data) { $scope.name="allen"; $scope.data={ name:'tom' } $scope.Data=Data; }) app.controller("secondController",function ($scope,Data) { $scope.name=$scope.$$prevSibling.name; $scope.data=$scope.$$prevSibling.data; $scope.Data=Data; }) </script>
自定義模塊
所有的模塊都有服務(wù),ng-app這個(gè)模塊理由¥scope什么的服務(wù),
咱們自己也可以寫(xiě)一個(gè)模塊,然后里面可以去寫(xiě)服務(wù)
這樣就可以把某些服務(wù)寫(xiě)在某個(gè)自定義的模塊里,實(shí)現(xiàn)重復(fù)調(diào)用
例如把隨機(jī)數(shù)的例子寫(xiě)在一個(gè)自定義的模塊里
var myModule=angular.module("myModule",[]); myModule.service("myService",function(){ this.ran=function(a,b){ return Math.random()*(a+b)-a; } }) var myapp=angular.module("myapp",["myModule"]); myapp.controller("myController",["$scope","$log","myService",function($scope,$log,myService){ $log.log(myService.ran(5,10)) }])
其實(shí)像angualr.sanitize.js就是一個(gè)自定義模塊
感謝各位的閱讀!關(guān)于“angularJS有哪些用法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。