Flutter教程

DNS

Contents

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.

https://bitbucket.org/zegeba/cordova-plugin-dns

联系我们?

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.

Contact Us Today!

Ionic DNS插件的安装(Installation)

ionic cordova plugin add cordova-plugin-dns npm install @ionic-native/dns
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/dns

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)
  );