ScanQRCode
- 调起设备扫码功能(条形码、二维码)
方法名 | 参数传递 | 说明 |
---|---|---|
ScanQRCode | {MethodName:'AppscanQRCodeMethod'} | 调用进入扫描方法 |
/*
* params:
* {
* MethodName: 回调方法名
* }
*/
PublicLib.ScanQRCode({MethodName:'AppscanQRCodeMethod'});
window.AppscanQRCodeMethod = function(content){
/*
* 返回值:
* {
* content: 扫描到的内容
* {
*/
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16