Node.js – dns.resolveNs() 方法
dns.resolveNs() 方法利用 DNS 协议解决主机名的名称服务器记录(NS 记录)。传递给回调函数的地址参数将包含主机名的名称服务器记录数组。
语法
dns.resolveNs(hostname, callback)
参数
定义以上参数如下 -
hostname – 此参数输入主机名的解析所用值。
callback – 此函数将捕获错误(如有)。
records – 为主机名返回名称服务器(NS)记录。
示例 1
创建一个文件 "resolveNs.js" 并复制以下代码段。创建文件后,使用命令 "node resolveNs.js" 运行该代码
// dns.resolveNs() Demo Example // Importing the dns module const dns = require('dns'); // Passing the argument below dns.resolveNs('tutorialspoint.com', (err,records) => console.log('NS Records: %j', records));
输出
NS Records: undefined
示例 2
// dns.resolveNs() Demo Example // Importing the dns module const dns = require('dns'); // Passing the argument below dns.resolveNs('google.com', (err,records) => console.log('NS Records: %j', records));
输出
NS Records: undefined
广告