1.0.0 • Published 7 years ago

cordova-plugin-scancodeplugin v1.0.0

Weekly downloads
7
License
ISC
Repository
github
Last release
7 years ago

scanCodePlugin

npm.io

ionic3 二维码扫描插件,安卓及iOS平台皆可用.

clone from https://github.com/YQianIOS/scanCodePlugin

Usage

ionic cordova plugin add cordova-plugin-scancodeplugin

     cordova.plugins.ScanCodePlugin.scan("扫描二维码", function (msg) {
            if (!msg) {
                return
            }
            if (that.homeModel.mobile === msg) {
                that.alert.showAlert('不能添加自己为好友');
                return;
            }

            that.searchWorker(msg);
        }, function (msg) {
            that.alert.showAlert("扫描二维码失败");
        });