摘要:作用返回一個新的函數(shù),綁定這個函數(shù)的指向參數(shù)新函數(shù)的上下文對象需要綁定的函數(shù)傳遞給函數(shù)的參數(shù)返回值指向的新函數(shù)注意會根據(jù)你的參數(shù)類型來決定調(diào)用或,所以可以是一個個數(shù)據(jù),也可以是一個數(shù)組哦。
angular.bind(self, fn, args)
作用:返回一個新的函數(shù),綁定這個函數(shù)的this指向self
參數(shù):
self:新函數(shù)的上下文對象
fn:需要綁定的函數(shù)
args:傳遞給函數(shù)的參數(shù)
返回值:this指向self的新函數(shù)
var obj = { name: "xxx", print: function (country) { console.log(this.name + " is form " + country); } }; var self = { name: "yyy" }; var bindFn = angular.bind(self, obj.print, "China"); //var bindFn = angular.bind(self, obj.print, ["China"]); obj.print("American"); //$ xxx is form American bindFn(); //$ yyy is form China
angular.copy(source, [destination])注意:bind會根據(jù)你的參數(shù)類型來決定調(diào)用call或apply,所以args可以是一個個數(shù)據(jù),也可以是一個數(shù)組哦。
作用:對象的深拷貝
參數(shù):
source:源對象
destination:拷貝的對象
返回值:拷貝的對象
var obj = { name: "xxx", age: 50 }; var copyObj = angular.copy(obj); console.log(copyObj); //$ Object {name: "xxx", age: 50}angular.equals(o1, o2)
作用:正常比較和對象的深比較
參數(shù):
o1:比較的對象
o2:比較的對象
返回值:boolean
angular.equals(3, 3); //$ true angular.equals(NaN,NaN); //$ true angular.equals({name:"xxx"},{name:"xxx"}); //$ true angular.equals({name:"xxx"},{name:"yyy"}); //$ falseangular.extend(dst, src)
作用:對象的拓展
參數(shù):
dst:拓展的對象
src:源對象
返回值:拓展的對象
var dst = {name: "xxx", country: "China"}; var src = {name: "yyy", age: 10}; angular.extend(dst, src); console.log(src); //$ Object {name: "yyy", age: 10} console.log(dst); //$ Object {name: "yyy", country: "China", age: 10}angular.forEach(obj, iterator, [context])
作用:對象的遍歷
參數(shù):
obj:對象
iterator:迭代函數(shù)
context:迭代函數(shù)中上下文
返回值:obj
var obj = {name: "xxx", country: "China"}; angular.forEach(obj, function (value, key) { console.log(key + ":" + value); }); //$ name:xxx //$ country:China var array = ["xxx", "yyy"]; angular.forEach(array, function (item, index) { console.log(index + ":" + item + " form " + this.country); }, obj); //$ 0:xxx form China //$ 1:yyy form Chinaangular.fromJson(string)
作用:字符串轉(zhuǎn)json對象
參數(shù):
string:字符串
返回值:json對象
var json = angular.fromJson("{"name":"xxx","age":34}"); console.log(json); //$ Object {name: "xxx", age: 34}angular.toJson(json,pretty)
作用:json對象轉(zhuǎn)字符串
參數(shù):
json:json
pretty:boolean number 控制字符串輸出格式
返回值:字符串
angular.toJson({name:"xxx"}); //$ "{"name":"xxx"}" angular.toJson({name:"xxx"},true); //$ "{ //$ "name": "xxx" //$ }" angular.toJson({name:"xxx"},10); //$ "{ //$ "name": "xxx" //$ }"angular.identity(value)
作用:返回這個函數(shù)的第一個參數(shù)
參數(shù):
value:參數(shù)
返回值:第一個參數(shù)
console.log(angular.identity("xxx","yyy")); //$ xxxangular.isArray(value)
作用:判斷一個數(shù)據(jù)是否是數(shù)組
參數(shù):
value:數(shù)據(jù)
返回值:boolean
angular.isArray(3); //$ false angular.isArray([]); //$ true angular.isArray([1, 2, 3]); //$ true angular.isArray({name: "xxx"}); //$ falseangular.isDate(value)
作用:判斷一個數(shù)據(jù)是否是Date類型
參數(shù):
value:數(shù)據(jù)
返回值:boolean
angular.isDate("2012-12-02"); //$ false angular.isDate(new Date()); //$ trueangular.isDefined(value)
作用:判斷一個數(shù)據(jù)是否是defined類型
參數(shù):
value:數(shù)據(jù)
返回值:boolean
angular.isDefined(undefined) //$ false angular.isDefined([]); //$ trueangular.isUndefined(value)
作用:判斷一個數(shù)據(jù)是否是undefined類型
參數(shù):
value:數(shù)據(jù)
返回值:boolean
angular.isUndefined(undefined) //$ true angular.isUndefined([]); //$ falseangular.isFunction(value)
作用:判斷一個數(shù)據(jù)是否是函數(shù)
參數(shù):
value:數(shù)據(jù)
返回值:boolean
angular.isFunction(function(){}); //$ true angular.isFunction(3); //$ falseangular.isNumber(value)
作用:判斷一個數(shù)據(jù)是否是Number類型
參數(shù):
value:數(shù)據(jù)
返回值:boolean
angular.isNumber(4); //$ true angular.isNumber("xxx"); //$ false angular.isNumber(new Number(4)); //$ false angular.isNumber(Number(4)); //$ trueangular.isObject(value)
作用:判斷一個數(shù)據(jù)是否是對象
參數(shù):
value:數(shù)據(jù)
返回值:boolean
angular.isObject("xxx"); //$ false angular.isObject(null); //$ false angular.isObject([]); //$ true angular.isObject(function(){}); //$ false angular.isObject({name:"xxx"}); //$ trueangular.isString(value)
作用:判斷一個數(shù)據(jù)是否是字符串
參數(shù):
value:數(shù)據(jù)
返回值:boolean
angular.isString(4); //$ false angular.isString("xxx"); //$ true angular.isString(new String("xxx")); //$ false angular.isString(String("xxx")); //$ trueangular.lowercase(string)
作用:將字符串大寫字母變小寫
參數(shù):
string:字符串
返回值:改變后的新字符串
var newString = angular.lowercase("XXyyZZ"); console.log(newString); //$ xxyyzzangular.uppercase(string)
作用:將字符串小寫字母變大寫
參數(shù):
string:字符串
返回值:改變后的新字符串
var newString = angular.uppercase("XXyyZZ"); console.log(newString); //$ XXYYZZangular.noop()
作用:空函數(shù)
var flag = false; flag ? console.log("xxx") : angular.noop();
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/85590.html
摘要:回調(diào)說白了,就是把函數(shù)當(dāng)參數(shù)傳給另一根函數(shù),在另一個函數(shù)執(zhí)行時調(diào)用此函數(shù)例如,在下面這段代碼中,上面定義了兩個函數(shù)和,下面的方法請求成功執(zhí)行,失敗執(zhí)行異步異步的原理我看了網(wǎng)上的一些博客和例子,大都以定時任務(wù)為例子說明,但具體的原理我還是不太 回調(diào) 說白了,就是把函數(shù)當(dāng)參數(shù)傳給另一根函數(shù),在另一個函數(shù)執(zhí)行時調(diào)用此函數(shù)例如,在下面這段代碼中,上面定義了兩個函數(shù)success和error,下...
摘要:回調(diào)說白了,就是把函數(shù)當(dāng)參數(shù)傳給另一根函數(shù),在另一個函數(shù)執(zhí)行時調(diào)用此函數(shù)例如,在下面這段代碼中,上面定義了兩個函數(shù)和,下面的方法請求成功執(zhí)行,失敗執(zhí)行異步異步的原理我看了網(wǎng)上的一些博客和例子,大都以定時任務(wù)為例子說明,但具體的原理我還是不太 回調(diào) 說白了,就是把函數(shù)當(dāng)參數(shù)傳給另一根函數(shù),在另一個函數(shù)執(zhí)行時調(diào)用此函數(shù)例如,在下面這段代碼中,上面定義了兩個函數(shù)success和error,下...
摘要:前言由于在博客系統(tǒng)的開發(fā)中和近期工作中的前端框架主要使用因此在這里記錄學(xué)習(xí)和使用的過程中遇到的一些需要記錄的點。執(zhí)行過程弄清楚的執(zhí)行過程是很重要的,這樣你才能在正確的時機做正確的事。至此,的執(zhí)行過程也就告一段落了。 前言 由于在博客系統(tǒng)的開發(fā)中和近期工作中的前端框架主要使用 AngularJS ,因此在這里記錄學(xué)習(xí)和使用 AngularJS 的過程中遇到的一些需要記錄的點。特別說明,本...
摘要:最近一段時間在學(xué)習(xí),由于覺得直接使用它需要加載很多的文件,因此想使用來實現(xiàn)異步加載,并動態(tài)注入控制器。手動啟動,特別說明此處的不是那個框架,而是的一個手動啟動框架的函數(shù)中完成了各模塊的初始化,并且引入了。 最近一段時間在學(xué)習(xí)angularjs,由于覺得直接使用它需要加載很多的js文件,因此想使用requirejs來實現(xiàn)異步加載,并動態(tài)注入控制器。簡單搜索了下發(fā)現(xiàn)好多教程寫的都很復(fù)雜,所...
摘要:初次寫文章,請多多包涵我最近正在根據(jù)這本書從頭開始實現(xiàn)了一遍的框架。筆記目錄鏈接個人認為本書對于想了解框架源碼的讀者來說相當(dāng)有用,完全值得去購買這本書書本主頁。因為是初學(xué)者,筆記里可能有一些錯誤,我也會繼續(xù)修改。 (初次寫文章,請多多包涵) 我最近正在根據(jù)《Build your own angularJS》這本書從頭開始實現(xiàn)了一遍AngularJS的框架。我把相關(guān)的源碼和我的個人學(xué)習(xí)筆...
閱讀 2480·2021-09-27 13:36
閱讀 2171·2019-08-29 18:47
閱讀 2140·2019-08-29 15:21
閱讀 1404·2019-08-29 11:14
閱讀 1989·2019-08-28 18:29
閱讀 1634·2019-08-28 18:04
閱讀 581·2019-08-26 13:58
閱讀 3217·2019-08-26 12:12