Результат поиска принтера этикеток Brother не найден с помощью cordova.plugins.brotherPrinter.findNetworkPrinters - PullRequest
0 голосов
/ 29 октября 2019

Я использую https://github.com/Ayiga/cordova-brother-label-printer

и пытаюсь найти свой принтер с Direct Wifi

вот мой код

 cordova.plugins.brotherPrinter.findNetworkPrinters(function(printers){
          console.log(printers);
          cordova.plugins.brotherPrinter.setPrinter(printers[0], function(){
            cordova.plugins.brotherPrinter.printViaSDK(img,function(statusCode){
              console.log(statusCode);
              if(statusCode.result){
                me.presentToast(statusCode.result);
              }
              loading.dismiss();
            },function(err){
              console.log(err);
              loading.dismiss();
            });
          },function(err) {
            console.log(err);
            loading.dismiss();
          });
      },function(err){
          console.log(err);
          loading.dismiss();
      });
    }, (err) => {
      loading.dismiss();
    });

этот код не дает мне ничего, ни ошибки, ни результата, просто пустой массив

любой может показать мне, как работать с этим плагином, пожалуйста

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...