PhoneGap中文网

标题: phonegap.plugins.barcodescanner在ios上遇到的奇怪的问题 [打印本页]

作者: iamxxy    时间: 2015-12-7 15:57
标题: phonegap.plugins.barcodescanner在ios上遇到的奇怪的问题
在Android上正常,在iOS不正常。用一个button设定ng-click='scan()',然后在controller中定义scan,
  1. $scope.scan = function(){
  2. cordova.plugins.barcodeScanner.scan(
  3.       function (result) {
  4.           alert("We got a barcode\n" +
  5.                 "Result: " + result.text + "\n" +
  6.                 "Format: " + result.format + "\n" +
  7.                 "Cancelled: " + result.cancelled);
  8.       },
  9.       function (error) {
  10.           alert("Scanning failed: " + error);
  11.       }
  12.    );
  13. }
复制代码
点开之后扫码界面出现了但是一动不动定格在那里(就像卡死)

我只需要在
  1. $scope.scan = function(){
  2. <font color="#ff0000">alert("Xxxx);</font>
  3. cordova.plugins.barcodeScanner.scan(
  4. function (result) {
  5. alert("We got a barcode\n" +
  6. "Result: " + result.text + "\n" +
  7. "Format: " + result.format + "\n" +
  8. "Cancelled: " + result.cancelled);
  9. },
  10. function (error) {
  11. alert("Scanning failed: " + error);
  12. }
  13. );
  14. }
复制代码
多加一个alert,然后扫码界面就能正常的调出来而且会正常工作。

实在太纠结为什么会有这样的情况,请教。






欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/) Powered by Discuz! X3.2