PhoneGap QR code scanning plug-in use

Source: Internet
Author: User

PhoneGap QR code scanning plug-in use

Document Address: Http://plugins.cordova.io/#/package/com.phonegap.plugins.barcodescanner

下载插件

cordova plugin add phonegap-plugin-barcodescanner
例子:

successand is fail callback functions. Success is passed a object with data, type and cancelled properties. Data is the text representation of the barcode data, type is the type of barcode detected and cancelled are whether or not The user cancelled the scan.

A Full example could be:

   cordova.plugins.barcodeScanner.scan(      function (result) {          alert("We got a barcode\n" +                "Result: " + result.text + "\n" +                "Format: " + result.format + "\n" +                "Cancelled: " + result.cancelled);      },       function (error) {          alert("Scanning failed: " + error);      }   );
Encoding a Barcode

The plugin creates the object with the cordova.plugins.barcodeScanner method encode(type, data, success, fail) .

Supported Encoding types:

    • Text_type
    • Email_type
    • Phone_type
    • Sms_type
A full example could be:   cordova.plugins.barcodeScanner.encode(cordova.plugins.barcodeScanner.Encode.TEXT_TYPE, "http://www.nytimes.com", function(success) {            alert("encode success: " + success);          }, function(fail) {            alert("encoding failed: " + fail);          }        );

PhoneGap QR code scanning plug-in use

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.