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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。