@raeon wrote:
Hi, I'm building with Ionic framework.
I need to use the QR scan code. After the scanner of QR code, I need to
select a substring of the return string by the scanner. I want to put
the QR scan code inside the factory service, but I have the problem with
the return variable in controller of Angular js. This return a
undefined variable.
the factory code I create is this:app.factory("qrCodeService",['$cordovaBarcodeScanner','$ionicPlatform',
function(barcodeScanner , ionicPlatform){
var _id = function(){
var p = ionicPlatform.ready(function(){
var cod = barcodeScanner.scan()
.then(function(imageData){
var _link = imageData.text;
var _pos_slash = _link.lastIndexOf('/');
return _link.substr(_pos_slash+1);
})
.catch(function(err){ return "0000000"; });return cod; }); return p; }; return{ getId : _id }
}]);
the controller that i build is this:
app.controller("indexCtrl",['$scope','$http',
function ( scope , http ){scope.codeScanner=function(){ var id = qrCodeService.getId(); alert(id); /*this return undefined*/ }
}
Some of you have a good advice to find a better quality solution?
Posts: 3
Participants: 2