DNS
A plugin for Apache Cordova that enables applications to manually resolve hostnames into an underlying network address. This is mostly useful for determining whether there is a problem with the device's DNS server configuration.
联系我们?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic DNS插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic DNS插件支持的平台(Supported Platforms)
- Android
Ionic DNS插件的用法(Usage)
import { DNS } from '@ionic-native/dns/ngx';
constructor(private dns: DNS) { }
...
this.dns.resolve(hostname)
.then(
address => console.log('Resolved ' + hostname + ' to ' + address),
error => console.log('Failed to resolve ' + hostname + ': ' + error)
);