dnsPromises.resolveSoa()方法是dns模块的promises对象的内置应用程序编程接口,用于使用DNS协议解析SOA或指定主机名的授权记录的开始。
用法:
dnsPromises.resolveSoa( hostname )
参数:此方法具有上述和以下所述的一个参数:
- hostname:此参数指定一个字符串,该字符串表示要解析的主机名。
返回值:此方法返回错误,地址。地址参数将包含nsname,hostmaster,serial,refresh,retry,expire和minttl属性。
以下示例说明了Node.js中dnsPromises.resolveSoa()方法的使用:
范例1:
// Node.js program to demonstrate the
// dnsPromises.resolveSoa() method
// Accessing promises object from dns module
const dns = require('dns');
const dnsPromises = dns.promises;
// Calling dnsPromises.resolveSoa() method
dnsPromises.resolveSoa('google.com').then((res) => {
console.log("for google:");
console.log(res);
});
输出:
for google: { nsname:'ns1.google.com', hostmaster:'dns-admin.google.com', serial:290031082, refresh:900, retry:900, expire:1800, minttl:60 }
范例2:
// Node.js program to demonstrate the
// dnsPromises.resolveSoa() method
// Accessing promises object from dns module
const dns = require('dns');
const dnsPromises = dns.promises;
// Calling dnsPromises.resolveSoa() method
// asynchronously
(async function() {
// Records from resolveSoa function
const records = await dnsPromises.resolveSoa(
'geeksforgeeks.org');
// Printing records
console.log("from async:");
console.log(records);
})();
输出:
from async: { nsname:'ns-869.awsdns-44.net', hostmaster:'awsdns-hostmaster.amazon.com', serial:1, refresh:7200, retry:900, expire:1209600, minttl:86400 }
注意:上面的程序将通过使用node index.js
命令。
参考: https://nodejs.org/api/dns.html#dns_dnspromises_resolvesoa_hostname
相关用法
注:本文由纯净天空筛选整理自anwesha0107大神的英文原创作品 Node.js | dnsPromises.resolveSoa() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。