您好,登錄后才能下訂單哦!
小編給大家分享一下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,如:
aa
表單指令
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è)只能通過數(shù)據(jù)來控制是否選中
設(shè)置ng-model就可以通過它來控制數(shù)據(jù)
disabled和readonly的區(qū)別
表單元素都可以通過設(shè)置disabled或者readonly屬性對(duì)其禁用,disabled設(shè)置了之后,用戶不可以使用,并且表單不會(huì)提交該字段,readonly
僅是用戶禁用,也就是說,用戶不可操作,但是表單依然會(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 一樣,只不過是如果不顯示的時(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è)問題,加上之后就不能在數(shù)據(jù)變量后面加別的東東了,這個(gè)標(biāo)簽里面只能顯示這條數(shù)據(jù),其他的就不行了比如
{{name}}---111
用ng-bind-template就好
ng-bind-template="{{name}}---111"
又有問題了,不能解析標(biāo)簽
沒事,用ng-bind-html
ng-bind-html="
"
這樣可不行哦,這是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= "
"
ng-bind-html=''text“
ng-non-bindable
這個(gè)指令可以讓表達(dá)式不解析
ng-include
可以引入一個(gè)html代碼片段,也需要變量來定義,代碼片段里也可以寫表達(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ù)在顯示的過程中,內(nèi)部會(huì)一直操作節(jié)點(diǎn),性能不好,可以這樣配置一下,在某個(gè)時(shí)刻去更新視圖顯示的數(shù)據(jù)就ok
AngularJS
ng-controller
可以用面向?qū)ο蟮乃季S來寫controller
{{name}}
{{myFun.age}}
{{myFun.sex}}
myapp.controller("myController",["$scope",myFun])
function myFun($scope){
$scope.name='allen';
this.sex='male'
}
myFun.prototype.age="18"
再來說服務(wù),服務(wù)其實(shí)已經(jīng)說了很多了。
angularJS中,服務(wù)是用來通過某些功能
$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)
這里要說下JSONP技術(shù)
JSONP是解決跨域問題的一種常見方式
跨域問題:因?yàn)闉g覽器有同源策略,所以當(dāng)不同域間進(jìn)行數(shù)據(jù)交互的時(shí)候就會(huì)出現(xiàn)跨域問題
同源策略:只有在同協(xié)議,同域名,同端口的情況下才能進(jìn)行數(shù)據(jù)交互
JSONP的原理:可以利用script標(biāo)簽(會(huì)使用回調(diào)函數(shù)來接收數(shù)據(jù))的src屬性不受同源策略的影響,可以請(qǐng)求到不同域的數(shù)據(jù),通過設(shè)置回調(diào)函
數(shù)來接收數(shù)據(jù)
JSONP是前后端結(jié)合的跨域方式:因?yàn)榍岸苏?qǐng)求到數(shù)據(jù)后需要在回調(diào)函數(shù)中使用,所以后端得將數(shù)據(jù)放回到回調(diào)函數(shù)中
JSONP屬于AJAX嗎?ajax是指通過使用xmlhttprequest對(duì)象進(jìn)行異步數(shù)據(jù)交互的技術(shù),jsonp是依靠scriptsrc屬性來獲取的,不屬于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")//在路由中控制切換頁面
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í){{}}了,開始變成?。。。?/p>
自定義服務(wù) 三種
1.factory
myapp.factory('serviceName',function(){
return ....
})
可以return 字符串、數(shù)組、函數(shù)、對(duì)象(使用最多,最和邏輯)
引入方法和angualr自帶的前面加$的服務(wù)完全一樣,使用方法取決于return出來的是什么東西,自定義服務(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
可以通過去自定義一個(gè)服務(wù)供應(yīng)商去定義一個(gè)服務(wù),寫法有區(qū)別,服務(wù)功能性的東西需要嵌套一層返回
myapp. provider ('myHttpService',['$http',function($http){
return {
$get:function(){
return:{//這里才是輸出
}
}
}])
外面return出來的是這個(gè)服務(wù)的供應(yīng)商,供應(yīng)商的$get方法里返回的才是供我們使用的部分,可以通過更改供應(yīng)商的部分參數(shù)來控制服務(wù)的功能
,
eq:還是返回一個(gè)范圍內(nèi)的隨機(jī)數(shù),但是通過配置供應(yīng)商的一個(gè)值來控制服務(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;
}])
通過這種方法創(chuàng)建的服務(wù)是可以配置供應(yīng)商的
3.service
通過這種方法創(chuàng)建出來的只能是對(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ù)放到父作用域上,就都可以訪問了
第二種就是在控制器里通過$$prevSibling找到兄弟作用域,然后使用數(shù)據(jù),需要注意的是,如果是初始數(shù)據(jù)類型的話就不能做數(shù)據(jù)雙向綁定了
第三種是定義服務(wù),把需要共享的數(shù)據(jù)做成服務(wù),這樣就都可以用了
first-name:{{name}}
first-data-name:{{data.name}}
first-Data-name:{{Data.name}}
second-name:{{name}}
second-data-name:{{data.name}}
second-Data-name:{{Data.name}}
自定義模塊
所有的模塊都有服務(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))
}])
以上是“angularJS如何使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。