最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

關(guān)于 angularJS的一些用法

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:24:46
文檔

關(guān)于 angularJS的一些用法

關(guān)于 angularJS的一些用法: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í)
推薦度:
導(dǎo)讀關(guān)于 angularJS的一些用法: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í)

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è)置了之后,用戶不可以使用,并且表單不會(huì)提交該字段,readonly

僅是用戶禁用,也就是說(shuō),用戶不可操作,但是表單依然會(huì)提交

倒計(jì)時(shí)搶購(gòu)小案例

$interval服務(wù)相當(dāng)于setInterval,可以自動(dòng)進(jìn)行臟數(shù)據(jù)檢驗(yàn)

清除的話需要賦值然后$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="<h1>{{name}}---111</h1>"

這樣可不行哦,這是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= "<h1>"+$scope.name+"---111</h1>"
ng-bind-html=''text“
ng-non-bindable

這個(gè)指令可以讓表達(dá)式不解析

<h3 ng-non-bindable>{{name}}</h3>

ng-include

可以引入一個(gè)html代碼片段,也需要變量來(lái)定義,代碼片段里也可以寫表達(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)寫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)題的一種常見方式

跨域問(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ù)獲取完成后銷毀。

如果method是jsonp的話,就可以用jsonp去跨域請(qǐng)求,但是注意要在url后寫關(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í){{}}了,開始變成?。。?!

自定義服務(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ù)可以依賴注入其他服務(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ù),寫法有區(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ū)ο蟮膶懛?/p>

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ù)放到父作用域上,就都可以訪問(wèn)了

第二種就是在控制器里通過(guò)$$prevSibling找到兄弟作用域,然后使用數(shù)據(jù),需要注意的是,如果是初始數(shù)據(jù)類型的話就不能做數(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ù),

咱們自己也可以寫一個(gè)模塊,然后里面可以去寫服務(wù)

這樣就可以把某些服務(wù)寫在某個(gè)自定義的模塊里,實(shí)現(xiàn)重復(fù)調(diào)用

例如把隨機(jī)數(shù)的例子寫在一個(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è)自定義模塊

總結(jié)

以上所述是小編給大家介紹的angularJS的一些用法,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

關(guān)于 angularJS的一些用法

關(guān)于 angularJS的一些用法: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í)
推薦度:
標(biāo)簽: 使用 用法 的使用
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top