console.dirxml()方法通過傳遞接收到的參數來調用console.log()方法,此元素不會產生任何XML格式。
用法:
console.dirxml(object_or_element)
參數:該函數接受以下參數:
- object:此方法采用JavaScript對象或元素。
返回值:此方法返回傳遞的對象或元素。
以下示例說明了Node.js中process.memoryUsage()方法的使用。
範例1:
index.js
// Importing console module
const console = require('console');
var a = 'GeeksforGeeks';
// Calling console.dirxml() function
console.dirxml(a)
使用以下命令運行index.js文件:
node index.js
輸出:
GeeksforGeeks
範例2:使用以下代碼創建一個index.js文件。
index.js
// Importing console module
const console = require('console');
// Calling console.dirxml() function
console.dirxml("Hi there, Geeks")
使用以下命令運行index.js文件:
node index.js
輸出:
Hi there, Geeks
參考:https://nodejs.org/api/console.html#console_console_dirxml_data
相關用法
- Node.js console.timeLog()用法及代碼示例
- Node.js x509.toLegacyObject()用法及代碼示例
- Node.js fs.fsyncSync()用法及代碼示例
- Node.js process.nextTick()用法及代碼示例
- Node.js GM charcoal()用法及代碼示例
- Node.js GM blur()用法及代碼示例
注:本文由純淨天空篩選整理自gouravhammad大神的英文原創作品 Node.js console.dirxml() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。