- Node.js 教程
- Node.js - 首页
- Node.js - 简介
- Node.js - 环境搭建
- Node.js - 第一个应用程序
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调函数概念
- Node.js - 上传文件
- Node.js - 发送邮件
- Node.js - 事件
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 进程
- Node.js - 应用程序扩展
- Node.js - 打包
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲区
- Node.js - 流
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 入门
- Node.js - MySQL 创建数据库
- Node.js - MySQL 创建表
- Node.js - MySQL 插入数据
- Node.js - MySQL 查询数据
- Node.js - MySQL 条件查询
- Node.js - MySQL 排序
- Node.js - MySQL 删除数据
- Node.js - MySQL 更新数据
- Node.js - MySQL 连接查询
- Node.js MongoDB
- Node.js - MongoDB 入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB 插入数据
- Node.js - MongoDB 查找数据
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB 删除数据
- Node.js - MongoDB 更新数据
- Node.js - MongoDB 限制结果
- Node.js - MongoDB 连接查询
- Node.js 模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - 实用工具模块
- Node.js - Web 模块
- Node.js 有用资源
- Node.js - 快速指南
- Node.js - 有用资源
- Node.js - 讨论
NodeJS - console.dirxml() 方法
Node.js 的 console.dirxml() 方法会在执行时调用 console.log() 方法,并将 dirxml() 方法接收到的参数传递给它。此方法不会生成 XML 格式。
假设有一个带有属性和值的 对象。如果我们将对象名称传递给 console.dirxml() 方法,它将通过传递接收到的参数(对象)来调用 console.log 方法。因此,它将在输出中显示对象的属性。
语法
以下是 Node.js console.dirxml() 方法的语法:
console.dirxml(data)
参数
data − 此参数接收 JavaScript 对象或元素。
返回值
此方法将返回已传递的对象或元素。
示例
Node.js 的 console.dirxml() 方法只接受一个参数。
在下面的示例中,我们创建一个具有可枚举属性的对象。然后,我们将该对象作为参数传递给 node.js 的 console.dirxml() 方法。
var Family = { Husband : "Jack", wife : "Rose", MarrDuration : "25 years", Kids : 1, KidName : "Jase", } console.dirxml(Family);
输出
正如我们在输出中看到的,这里的 family 是一个对象,我们将其传递给 console.dirxml() 方法,然后此方法将通过传递接收到的参数来调用 console.log() 方法。
{ Husband: 'Jack', wife: 'Rose', MarrDuration: '25 years', Kids: 1, KidName: 'Jase' }
示例
Node.js 的 console.dirxml() 方法只接受一个参数。
在这个例子中,我们将一个整数值作为参数传递给 node.js 的 console.dirxml() 方法。
var x = 10; var y = 10; var z = x + y; console.dirxml(z);
输出
正如我们在输出中看到的,我们将一个整数值传递给 console.dirxml() 方法,然后此方法将通过传递接收到的参数来调用 console.log() 方法。
20
示例
在这个例子中,我们将一个 字符串 作为输入传递给 console.dirxml() 方法。
console.dirxml("Tutorialspoint, Simply Easy Learning at your fingertips");
输出
正如我们在输出中看到的,作为参数传递的输入 字符串 将被打印。
Tutorialspoint, Simply Easy Learning at your fingertips
nodejs_console_module.htm
广告