📜  Node.js dns.resolveNs() 方法

📅  最后修改于: 2022-05-13 01:56:46.756000             🧑  作者: Mango

Node.js dns.resolveNs() 方法

dns.resolveNs() 方法是 dns 模块的内置应用程序编程接口,用于使用 DNS 协议解析指定主机名的 NS 或名称服务器记录。

句法:

dns.resolveNs( hostname, callback )

参数:此方法有两个参数,如前所述,如下所述:

  • 主机名:此参数指定一个字符串,表示要解析的主机名。
  • callback:指定DNS解析主机名后调用的函数。
    • 错误:如果生成则指定错误。
    • 地址:它是一个字符串数组,表示为主机名返回的名称服务器记录。

返回值:该方法通过回调函数返回错误,地址。这些数据作为参数传递给回调函数。

下面的例子说明了 Node.js 中 dns.resolveNs() 方法的使用:

示例 1:

// Node.js program to demonstrate the   
// dns.resolveNs() method
  
// Accessing dns module
const dns = require('dns');
  
// Calling dns.resolveNs() method for hostname
// geeksforgeeks.org and displaying them in
// console as a callback
dns.resolveNs('geeksforgeeks.org', (err, 
    addresses) => console.log('NS records: %j', addresses));

输出:

NS records: [
    "ns-1520.awsdns-62.org",
    "ns-1569.awsdns-04.co.uk",
    "ns-245.awsdns-30.com",
    "ns-869.awsdns-44.net"
]

示例 2:

// Node.js program to demonstrate the   
// dns.resolveNs() method
  
// Accessing dns module
const dns = require('dns');
  
// Calling dns.resolveNs() method for
// hostname google.com and displaying
// them in console as a callback
dns.resolveNs('google.com', (err, 
    addresses) => console.log('NS records: %j', addresses));

输出:

NS records: [
    "ns3.google.com",
    "ns2.google.com",
    "ns4.google.com",
    "ns1.google.com"
]

注意:以上程序将使用node index.js命令编译运行。

参考: https://nodejs.org/api/dns.html#dns_dns_resolvens_hostname_callback