cordova zeroconf如何支持?

时间:2016-02-02 15:35:29

标签: javascript node.js cordova zeroconf

我正在使用bonjour来提供服务 在我的服务器上运行

var test= bonjour.publish({ name: "abcd", type: 'http', port: settings.server.port });
test.start();

在客户端上运行:

function onDeviceReady() {

  console.log('in deviceready')
  var zeroconf = cordova.plugins.zeroconf;
  console.log(zeroconf)

  zeroconf.watch('abcd._http._tcp.local.', function (result) {
    console.log('in zeroconf')
    var action = result.action;
    var service = result.service;
    if (action == 'added') {
      console.log('service added', service);
    } else {
      console.log('service removed', service);
    }
  });
  console.log("test")
}

但我的zeroconf.watch方法没有得到任何回应/成功。我添加了所需的插件,但没有任何作用......

1 个答案:

答案 0 :(得分:-1)

我为我工作:

<script type="text/javascript">
    function onDeviceReady() {
        ZeroConf.watch('_http._tcp.local.', function(resp){
            document.getElementById("zeroconf2").innerHTML = resp;
        });
    }
    function onLoad() {
        document.addEventListener("deviceready", onDeviceReady, false);
    }
    onLoad();
</script>

并将此行放入config.xml

<gap:plugin name="cordova-zeroconf-plugin" source="npm" />