Node.js 常用工具util包

來源:互聯網
上載者:User

標籤:back   csharp   正則表達   集合   err   否則   轉換   red   ext   

Node.js 常用工具

util 是一個Node.js 核心模組,提供常用函數的集合,用於彌補核心JavaScript 的功能 過於精簡的不足。

util.isError(obj);

util.isDate(obj);

util.inherits(constr,super);

util.isRegExp(/some regexp/);

util.isArray(obj);

util.inspect(obj);

util.inherits

util.inherits(constructor, superConstructor)是一個實現對象間原型繼承 的函數。

JavaScript 的物件導向特性是基於原型的,與常見的基於類的不同。JavaScript 沒有 提供對象繼承的語言層級特性,而是通過原型複製來實現的。

在這裡我們只介紹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);

  

我們定義了一個基礎對象Base 和一個繼承自Base 的Sub,Base 有三個在建構函式 內定義的屬性和一個原型中定義的函數,通過util.inherits 實現繼承。運行結果如下:

base Hello base { name: ‘base‘, base: 1991, sayHello: [Function] } sub { name: ‘sub‘ }

  

注意:Sub 僅僅繼承了Base 在原型中定義的函數,而建構函式內部創造的 base 屬 性和 sayHello 函數都沒有被 Sub 繼承。

同時,在原型中定義的屬性不會被console.log 作 為對象的屬性輸出。如果我們去掉 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])是一個將任意對象轉換 為字串的方法,通常用於調試和錯誤輸出。它至少接受一個參數 object,即要轉換的對象。

showHidden 是一個選擇性參數,如果值為 true,將會輸出更多隱藏資訊。

depth 表示最大遞迴的層數,如果對象很複雜,你可以指定層數以控制輸出資訊的多 少。如果不指定depth,預設會遞迴2層,指定為 null 表示將不限遞迴層數完整遍曆對象。 如果color 值為 true,輸出格式將會以ANSI 顏色編碼,通常用於在終端顯示更漂亮 的效果。

特別要指出的是,util.inspect 並不會簡單地直接把對象轉換為字串,即使該對 象定義了toString 方法也不會調用。

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));

  

運行結果是:

Person { name: ‘byvoid‘, toString: [Function] }Person {  name: ‘byvoid‘,  toString:    { [Function]     [length]: 0,     [name]: ‘‘,     [arguments]: null,     [caller]: null,     [prototype]: { [constructor]: [Circular] } } }

  

util.isArray(object)

如果給定的參數 "object" 是一個數組返回true,否則返回false。

var util = require(‘util‘);util.isArray([])  // trueutil.isArray(new Array)  // trueutil.isArray({})  // false

  

util.isRegExp(object)

如果給定的參數 "object" 是一個Regex返回true,否則返回false。

var util = require(‘util‘);util.isRegExp(/some regexp/)  // trueutil.isRegExp(new RegExp(‘another regexp‘))  // trueutil.isRegExp({})  // false

  

util.isDate(object)

如果給定的參數 "object" 是一個日期返回true,否則返回false。

var util = require(‘util‘);util.isDate(new Date())  // trueutil.isDate(Date())  // false (without ‘new‘ returns a String)util.isDate({})  // false

  

util.isError(object)

如果給定的參數 "object" 是一個錯誤對象返回true,否則返回false。

var util = require(‘util‘);util.isError(new Error())  // trueutil.isError(new TypeError())  // trueutil.isError({ name: ‘Error‘, message: ‘an error occurred‘ })  // false

  

 摘自:http://www.runoob.com/nodejs/nodejs-util.html

Node.js 常用工具util包

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.