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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。