错误:
JS是这样的,虽然我看不太懂,主要是都没动过啊
var img1Base64;
var idcardFp;//身份证内的指纹
var inputFp;//录入的指纹
var httpServerPort=8989;
function readIDcard(){
Forguncy.Page.getCell("tishi").setValue("");
Forguncy.Page.getCell("name").setValue("");
Forguncy.Page.getCell("sex").setValue("");
Forguncy.Page.getCell("minzu").setValue("");
Forguncy.Page.getCell("birthday").setValue("");
Forguncy.Page.getCell("address").setValue("");
Forguncy.Page.getCell("cardId").setValue("");
Forguncy.Page.getCell("yxq").setValue("");
Forguncy.Page.getCell("yxqe").setValue("");
Forguncy.Page.getCell("fzjg").setValue("");
Forguncy.Page.getCell("touxiang").setValue("");
Forguncy.Page.getCell("touxiang").setValue("");
$.ajax({
dataType: "JSONP",
type: "get",
url: "http://localhost:"+httpServerPort+"/api/ReadMsg?waitTime=3&readOnce=0",//接口服务器地址 参数: Fp=1读证内指纹,PhotoQuality 身份证头像质量,cardImg=1获取身份证正反面图片,readOnce=1同一张卡只读一次, waitTime 读卡超时单位秒 最长60秒
//contentType: "application/x-www-form-urlencoded; charset=utf-8",
success: function (data) {
// 成功执行
// console.log(data);
// var dataStr=JSON.stringify(data);
// Forguncy.Page.getCell("textaa").setValue(dataStr);
if(data.code=="0"){
Forguncy.Page.getCell("name").setValue(data.name);
Forguncy.Page.getCell("sex").setValue(data.sex);
Forguncy.Page.getCell("minzu").setValue(data.nation);
Forguncy.Page.getCell("birthday").setValue(data.born);
Forguncy.Page.getCell("address").setValue(data.address);
Forguncy.Page.getCell("cardId").setValue(data.cardno);
Forguncy.Page.getCell("yxq").setValue(data.userlifeb);
Forguncy.Page.getCell("yxqe").setValue(data.userlifee);
Forguncy.Page.getCell("fzjg").setValue(data.police); Forguncy.Page.getCell("touxiang").setValue("data:image/png;base64,"+data.photobase64);
}
else{
Forguncy.Page.getCell("tishi").setValue(data.retmsg+"错误代码:"+data.code);
alert(data.retmsg+"错误代码:"+data.code);
}
},
error: function (e) {
//失败执行
alert(e.status + ',' + e.statusText);
}
});
};
readIDcard();
|