Foxtable(狐表)用户栏目专家坐堂 → HBuilder扫描一维条码


  共有1635人关注过本帖树形打印复制链接

主题:HBuilder扫描一维条码

帅哥哟,离线,有人找我吗?
benwong2013
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:一尾狐 帖子:485 积分:4069 威望:0 精华:0 注册:2015/12/16 8:22:00
HBuilder扫描一维条码  发帖心情 Post By:2019/8/10 9:22:00 [只看该作者]

请问这段代码要修改为支持code128的一维条码如何修改,并且需要响应速度快一些;

var ws=null,wo=null;
var scan=null,domready=false;
// H5 plus事件处理
function plusReady(){
if(ws||!window.plus||!domready){
return;
}
// 获取窗口对象
ws=plus.webview.currentWebview();
wo=ws.opener();
// 开始扫描
ws.addEventListener('show',function(){
scan=new plus.barcode.Barcode('bcid');
    scan.onmarked=onmarked;
    scan.start({conserve:true,filename:"_doc/barcode/"});
});
// 显示页面并关闭等待框
    ws.show("pop-in");
    wo.evalJS("closeWaiting()");
}
if(window.plus){
plusReady();
}else{
document.addEventListener("plusready",plusReady,false);
}
// 监听DOMContentLoaded事件
document.addEventListener("DOMContentLoaded",function(){
domready=true;
plusReady();
},false);
// 二维码扫描成功
function onmarked(type,result,file){
    switch(type){
    case plus.barcode.QR:
    type = "QR";
    break;
    case plus.barcode.EAN13:
    type = "EAN13";
    break;
    case plus.barcode.CODE128:
    type = "CODE128";
    break;
    default:
    type = "其它"+type;
    break;
    }
    result = result.replace(/\n/g, '');
    plus.nativeUI.alert("aaaabbbccc");
    wo.evalJS("scaned('"+ type +"','"+ result +"','"+ file +"');");
    back();
}
// 从相册中选择二维码图片 
function scanPicture() {
    plus.gallery.pick(function(path){
    plus.barcode.scan(path,onmarked,function(error){
plus.nativeUI.alert( "无法识别此图片" );
});
    },function(err){
        plus.nativeUI.alert("Failed: "+err.message);
    });
}
</script>
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8"/>
<style type="text/css">
#bcid {
width: 100%;
position: absolute;
top: 0px;
bottom: 44px;
text-align: center;
}
.tip {
color: #FFFFFF;
font-weight: bold;
text-shadow: 0px -1px #103E5C;
}
footer {
width: 100%;
height: 44px;
position: absolute;
bottom: 0px;
line-height: 44px;
text-align: center;
color: #FFF;
}
.fbt {
width: 50%;
height: 100%;
background-color: #FFCC33;
float: left;
}
.fbt:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.5);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.5);
}

 回到顶部
帅哥,在线噢!
有点蓝
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:106658 积分:542473 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2019/8/10 9:44:00 [只看该作者]

HBuilder我没有用过。这种问题请查看他们官方的文档,或者到他们官方论坛提问。

 回到顶部