添加二维码功能采用的是:ngcordova
官方网站:http://ngcordova.com/
使用方式:下载ngcordova
GitHub地址:https://github.com/driftyco/ng-cordova
官网地址::http://ngcordova.com/
1、将ng-cordova.min.js 引入到项目中
2、index.html中引入JS
3、angular.modul中加载 ngCordova
4controller中使用
.controller('xxxController',function($scope, $cordovaBarcodeScanner ){
$scope.scanBarcode = function() {
$cordovaBarcodeScanner.scan().then(function(imageData) {
alert(imageData.text);
console.log("Barcode Format -> " + imageData.format);
console.log("Cancelled -> " + imageData.cancelled);
}, function(error) {
console.log("An error happened -> " + error);
});
};
}
运行OK