Flutter教程

Zeroconf

Contents

This plugin allows you to browse and publish Zeroconf/Bonjour/mDNS services.

https://github.com/becvert/cordova-plugin-zeroconf

联系我们?

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 Zeroconf插件的安装(Installation)

ionic cordova plugin add cordova-plugin-zeroconf npm install @ionic-native/zeroconf
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/zeroconf

Ionic Zeroconf插件支持的平台(Supported Platforms)

  • Android
  • iOS

Ionic Zeroconf插件的用法(Usage)

import { Zeroconf } from '@ionic-native/zeroconf/ngx';

constructor(private zeroconf: Zeroconf) { }

...

// watch for services of a specified type
this.zeroconf.watch('_http._tcp.', 'local.').subscribe(result => {
  if (result.action == 'added') {
    console.log('service added', result.service);
  } else {
    console.log('service removed', result.service);
  }
});

// publish a zeroconf service of your own
this.zeroconf.register('_http._tcp.', 'local.', 'Becvert\'s iPad', 80, {
  'foo': 'bar'
}).then(result => {
  console.log('Service registered', result.service);
});


// unregister your service
this.zeroconf.unregister('_http._tcp.', 'local.', 'Becvert\'s iPad');