Node.js 常用工具
util 是一個Node.js 核心模塊鲫趁,提供常用函數(shù)的集合筐赔,用于彌補核心JavaScript 的功能 過于精簡的不足。
util.inherits
util.inherits(constructor, superConstructor)是一個實現(xiàn)對象間原型繼承 的函數(shù)珊随。
JavaScript 的面向?qū)ο筇匦允腔谠偷睦时c常見的基于類的不同污淋。JavaScript 沒有 提供對象繼承的語言級別特性,而是通過原型復(fù)制來實現(xiàn)的余掖。
在這里我們只介紹util.inherits 的用法寸爆,示例如下:
var util = require('util');
function Base() { this.name = 'base';
this.base = 1991;
this.sayHello = function() { console.log('Hello ' + this.name);
};
}
Base.prototype.showName = function() { console.log(this.name);};
function Sub() { this.name = 'sub'; } util.inherits(Sub, Base);
var objBase = new Base();
objBase.showName();
objBase.sayHello();
console.log(objBase);
var objSub = new Sub();
objSub.showName();
//objSub.sayHello();
console.log(objSub);
我們定義了一個基礎(chǔ)對象Base 和一個繼承自Base 的Sub,Base 有三個在構(gòu)造函數(shù) 內(nèi)定義的屬性和一個原型中定義的函數(shù),通過util.inherits 實現(xiàn)繼承赁豆。運行結(jié)果如下:
base
Hello base
{ name: 'base', base: 1991, sayHello: [Function] }
sub
{ name: 'sub' }
注意:Sub 僅僅繼承了Base 在原型中定義的函數(shù)仅醇,而構(gòu)造函數(shù)內(nèi)部創(chuàng)造的 base 屬 性和 sayHello 函數(shù)都沒有被 Sub 繼承。
同時魔种,在原型中定義的屬性不會被console.log 作 為對象的屬性輸出析二。如果我們?nèi)サ?objSub.sayHello(); 這行的注釋,將會看到:
node.js:201 throw e;
// process.nextTick error, or 'error' event on first tick
^
TypeError: Object #<Sub> has no method 'sayHello'
at Object.<anonymous> (/home/byvoid/utilinherits.js:29:8)
at Module._compile (module.js:441:26) at Object..js (module.js:459:10)
at Module.load (module.js:348:31)
at Function._load (module.js:308:12)
at Array.0 (module.js:479:10)
at EventEmitter._tickCallback (node.js:192:40)
util.inspect
util.inspect(object,[showHidden],[depth],[colors])是一個將任意對象轉(zhuǎn)換 為字符串的方法节预,通常用于調(diào)試和錯誤輸出叶摄。它至少接受一個參數(shù) object,即要轉(zhuǎn)換的對象心铃。
showHidden 是一個可選參數(shù),如果值為 true挫剑,將會輸出更多隱藏信息去扣。
depth 表示最大遞歸的層數(shù),如果對象很復(fù)雜樊破,你可以指定層數(shù)以控制輸出信息的多 少愉棱。如果不指定depth,默認會遞歸2層哲戚,指定為 null 表示將不限遞歸層數(shù)完整遍歷對象奔滑。 如果color 值為 true,輸出格式將會以ANSI 顏色編碼顺少,通常用于在終端顯示更漂亮 的效果朋其。
特別要指出的是,util.inspect 并不會簡單地直接把對象轉(zhuǎn)換為字符串脆炎,即使該對 象定義了toString 方法也不會調(diào)用梅猿。
var util = require('util');
function Person() { this.name = 'byvoid'; this.toString = function() { return this.name; }; }
var obj = new Person(); console.log(util.inspect(obj));
console.log(util.inspect(obj, true));
運行結(jié)果是:
Person { name: 'byvoid', toString: [Function] }
Person { name: 'byvoid',
toString:
{ [Function] [length]: 0,
[name]: '',
[arguments]: null,
[caller]: null,
[prototype]: { [constructor]: [Circular] } }
}
util.isArray(object)
如果給定的參數(shù) "object" 是一個數(shù)組返回true,否則返回false秒裕。
var util = require('util');
util.isArray([])
// true
util.isArray(new Array)
// true
util.isArray({})
// false
util.isRegExp(object)
如果給定的參數(shù) "object" 是一個正則表達式返回true袱蚓,否則返回false。
var util = require('util');
util.isRegExp(/some regexp/)
// true
util.isRegExp(new RegExp('another regexp'))
// true
util.isRegExp({})
// false
util.isDate(object)
如果給定的參數(shù) "object" 是一個日期返回true几蜻,否則返回false喇潘。
var util = require('util');
util.isDate(new Date())
// true
util.isDate(Date())
// false (without 'new' returns a String)
util.isDate({})
// false
util.isError(object)
如果給定的參數(shù) "object" 是一個錯誤對象返回true,否則返回false梭稚。
var util = require('util');
util.isError(new Error())
// true
util.isError(new TypeError())
// true
util.isError({ name: 'Error', message: 'an error occurred' })
// false
更多詳情可以訪問 http://nodejs.org/api/util.html 了解詳細內(nèi)容颖低。