关闭BarcodeScanner Ionic Native Plugin并超时

时间:2017-07-05 12:47:24

标签: javascript android angularjs ionic-framework barcode-scanner

这是我的方案:我的Ionic应用程序中有一个barcodeScanner离子插件,它安装在我无法使用硬件按钮的平板电脑上。

我的代码:

this.barcodeScanner.scan(option).then((result) => {
            console.dir(
                "We got a barcode\n" +
                "Result: " + result.text + "\n" +
                "Format: " + result.format + "\n" +
                "Cancelled: " + result.cancelled
            );

            this.product_code = result.text;
            if(result.text !== "" && result.text !== null)
            {
                return this.searchByBarcode(result.text);
            }
        }, (err) => {
            // An error occurred
        });

问题

如果没有扫描条形码(或在插件中插入软件按钮),有没有办法在一定时间后关闭插件?

0 个答案:

没有答案