小編給大家分享一下angularJS如何使用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
在紅山等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站建設(shè)、成都做網(wǎng)站 網(wǎng)站設(shè)計制作按需規(guī)劃網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站建設(shè),全網(wǎng)營銷推廣,外貿(mào)網(wǎng)站建設(shè),紅山網(wǎng)站建設(shè)費(fèi)用合理。事件指令:
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綁定事件的
需要注意的是,使用事件對象的時候,需要在ng-click等指令里傳入$event,如:
aa
表單指令
ng-change
當(dāng)值發(fā)生改變的時候就會有用
有value值的一些個標(biāo)簽,能ng-model的,才能用喲
必須要ng-model配合使用
可以做數(shù)據(jù)驗證
ng-disabled 控制元素是否可用
ng-readonly
ng-checked
控制checkbox是否被選中
只設(shè)置這個只能通過數(shù)據(jù)來控制是否選中
設(shè)置ng-model就可以通過它來控制數(shù)據(jù)
disabled和readonly的區(qū)別
表單元素都可以通過設(shè)置disabled或者readonly屬性對其禁用,disabled設(shè)置了之后,用戶不可以使用,并且表單不會提交該字段,readonly
僅是用戶禁用,也就是說,用戶不可操作,但是表單依然會提交
倒計時搶購小案例
$interval服務(wù)相當(dāng)于setInterval,可以自動進(jìn)行臟數(shù)據(jù)檢驗
清除的話需要賦值然后$interval.cancel(timer)
ng-show 為true顯示。false隱藏
ng-hide 為true 隱藏。false 顯示
ng-if 和ng-show 一樣,只不過是如果不顯示的時候,節(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有一個問題,加上之后就不能在數(shù)據(jù)變量后面加別的東東了,這個標(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以后大換血的時候,為了精簡angular.js,把這個玩意給弄出去了,得用一個插件(模塊)
還得在angular.module里面給放進(jìn)"ngSanitize"
然后需要把要顯示的標(biāo)簽掛在一個變量上,然后設(shè)置給ng-bind-html
$scope.text= "
"
ng-bind-html=''text“
ng-non-bindable
這個指令可以讓表達(dá)式不解析
ng-include
可以引入一個html代碼片段,也需要變量來定義,代碼片段里也可以寫表達(dá)式等
$scope.text='html/a.html';
ng-include='text'
注意,因為其實內(nèi)部是ajax請求的,所以需要服務(wù)器環(huán)境下
ng-model-options='{updateOn:'blur'}'
綁定數(shù)據(jù)在顯示的過程中,內(nèi)部會一直操作節(jié)點(diǎn),性能不好,可以這樣配置一下,在某個時刻去更新視圖顯示的數(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ù)其實已經(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 錯誤回調(diào)
這里要說下JSONP技術(shù)
JSONP是解決跨域問題的一種常見方式
跨域問題:因為瀏覽器有同源策略,所以當(dāng)不同域間進(jìn)行數(shù)據(jù)交互的時候就會出現(xiàn)跨域問題
同源策略:只有在同協(xié)議,同域名,同端口的情況下才能進(jìn)行數(shù)據(jù)交互
JSONP的原理:可以利用script標(biāo)簽(會使用回調(diào)函數(shù)來接收數(shù)據(jù))的src屬性不受同源策略的影響,可以請求到不同域的數(shù)據(jù),通過設(shè)置回調(diào)函
數(shù)來接收數(shù)據(jù)
JSONP是前后端結(jié)合的跨域方式:因為前端請求到數(shù)據(jù)后需要在回調(diào)函數(shù)中使用,所以后端得將數(shù)據(jù)放回到回調(diào)函數(shù)中
JSONP屬于AJAX嗎?ajax是指通過使用xmlhttprequest對象進(jìn)行異步數(shù)據(jù)交互的技術(shù),jsonp是依靠scriptsrc屬性來獲取的,不屬于ajax
JSONP有什么缺點(diǎn),使用的時候需要注意什么?
不能post跨域處理,需要注意的是:每次請求應(yīng)該動態(tài)的創(chuàng)建script標(biāo)簽和回調(diào)函數(shù),數(shù)據(jù)獲取完成后銷毀。
如果method是jsonp的話,就可以用jsonp去跨域請求,但是注意要在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:"/tupian/20230522/error.html method:"jsonp",
params:{
wd:$scope.wd,
cb:'JSON_CALLBACK'
}
}).success(function (results) {
$scope.dataList = results.s
})
}
})
$location服務(wù)
console.log($location.absUrl())//輸出絕對地址
console.log($location.host())//輸出域名
console.log($location.port())//輸出端口
console.log($location.protocol())//協(xié)議
$location.path("aaa")//在路由中控制切換頁面
console.log($location.path()) // #/aaa
$log 服務(wù)
多種控制臺輸出模式
$log.info("info");
$log.warn("warn");
$log.error("error");
$log.log("log");
angularJs對服務(wù)供應(yīng)商配置
例如
myapp.config(["$interpolateProvider",function($interpolateProvider){
$interpolateProvider.startSymbol("!!");
$interpolateProvider.endSymbol("!!");
}])
angular就不認(rèn)識{{}}了,開始變成?。。?!
自定義服務(wù) 三種
1.factory
myapp.factory('serviceName',function(){
return ....
})
可以return 字符串、數(shù)組、函數(shù)、對象(使用最多,最和邏輯)
引入方法和angualr自帶的前面加$的服務(wù)完全一樣,使用方法取決于return出來的是什么東西,自定義服務(wù)的服務(wù)名還是別加$了
eq:返回一個 兩個數(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:下一個自定義的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
可以通過去自定義一個服務(wù)供應(yīng)商去定義一個服務(wù),寫法有區(qū)別,服務(wù)功能性的東西需要嵌套一層返回
myapp. provider ('myHttpService',['$http',function($http){
return {
$get:function(){
return:{//這里才是輸出
}
}
}])
外面return出來的是這個服務(wù)的供應(yīng)商,供應(yīng)商的$get方法里返回的才是供我們使用的部分,可以通過更改供應(yīng)商的部分參數(shù)來控制服務(wù)的功能
,
eq:還是返回一個范圍內(nèi)的隨機(jī)數(shù),但是通過配置供應(yīng)商的一個值來控制服務(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)建出來的只能是對象
最簡單的創(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;
}
}
多個控制器間數(shù)據(jù)的共享
實現(xiàn)多個控制器數(shù)據(jù)共享的方法有這樣三種,
第一種比較簡單,就是把數(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這個模塊理由¥scope什么的服務(wù),
咱們自己也可以寫一個模塊,然后里面可以去寫服務(wù)
這樣就可以把某些服務(wù)寫在某個自定義的模塊里,實現(xiàn)重復(fù)調(diào)用
例如把隨機(jī)數(shù)的例子寫在一個自定義的模塊里
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)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!