- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我的问题是我们在 secugen 上购买了指纹设备,但是当我使用那里的代码时出现问题,我已经安装了他们所有的驱动器。在 html 端有这段代码遇到“document.objSecuBSP.OpenDevice 不是函数”。
我找到了这个 link但它不起作用。
这里是代码的先睹为快。
<html>
<head>
<title>Example of SecuGen SecuBSP SDK Pro COM Module</title>
</head>
<script lang=javascript>
<!--
function fnRegister()
{
var err, payload
try // Exception handling
{
// Open device. [AUTO_DETECT]
// You must open device before enrollment.
DEVICE_FDP02 = 1;
DEVICE_FDU02 = 2;
DEVICE_FDU03 = 3;
DEVICE_FDU04 = 4;
DEVICE_FDU05 = 5; // HU20
DEVICE_AUTO_DETECT = 255;
document.objSecuBSP.OpenDevice(DEVICE_AUTO_DETECT);
err = document.objSecuBSP.ErrorCode; // Get error code
alert(err+'s');
if ( err != 0 ) // Device open failed
{
alert('Device open failed !');
return;
}
// Enroll user's fingerprint.
document.objSecuBSP.Enroll(payload);
err = document.objSecuBSP.ErrorCode; // Get error code
if ( err != 0 ) // Enroll failed
{
alert('Registration failed ! Error Number : [' + err + ']');
return;
}
else // Enroll success
{
// Get text encoded FIR data from SecuBSP module.
document.bspmain.template1.value = document.objSecuBSP.FIRTextData;
alert('Registration success !');
}
// Close device. [AUTO_DETECT]
document.objSecuBSP.CloseDevice(DEVICE_AUTO_DETECT);
}
catch(e)
{
alert(e.message);
}
return;
}
function fnCapture()
{
var err
try // Exception handling
{
// Open device. [AUTO_DETECT]
// You must open device before capture.
DEVICE_FDP02 = 1;
DEVICE_FDU02 = 2;
DEVICE_FDU03 = 3;
DEVICE_FDU04 = 4;
DEVICE_FDU05 = 5; // HU20
DEVICE_AUTO_DETECT = 255;
document.objSecuBSP.OpenDevice(DEVICE_AUTO_DETECT);
err = document.objSecuBSP.ErrorCode; // Get error code
if ( err != 0 ) // Device open failed
{
alert('Device open failed !');
return;
}
// Enroll user's fingerprint.
document.objSecuBSP.Capture();
err = document.objSecuBSP.ErrorCode; // Get error code
if ( err != 0 ) // Enroll failed
{
alert('Capture failed ! Error Number : [' + err + ']');
return;
}
else // Capture success
{
// Get text encoded FIR data from SecuBSP module.
document.bspmain.template2.value = document.objSecuBSP.FIRTextData;
alert('Capture success !');
}
// Close device. [AUTO_DETECT]
document.objSecuBSP.CloseDevice(DEVICE_AUTO_DETECT);
}
catch(e)
{
alert(e.message);
}
return;
}
function fnVerify()
{
var err
var str1 = document.bspmain.template1.value;
var str2 = document.bspmain.template2.value;
try // Exception handling
{
// Verify fingerprint.
document.objSecuBSP.VerifyMatch(str1, str2);
err = document.objSecuBSP.ErrorCode;
if ( err != 0 )
{
alert('Verification error ! Error Number : [' + err + ']');
}
else
{
if ( document.objSecuBSP.IsMatched == 0 )
alert('Verification failed !');
else
alert('Verification success !');
}
}
catch(e)
{
alert(e.message);
}
return;
}
// -->
</script>
<body>
<h4><b>Example of SecuGen SecuBSP SDK Pro COM Module</b></h4>
<p></p>
<form name=bspmain>
<input type=button name=btnRegister value='Register' OnClick='fnRegister();' style='width:100px'>
<br>
<input type=text name=template1 style='width:500px'>
<br>
<br>
<input type=button name=btnCapture value='Capture' OnClick='fnCapture();' style='width:100px'>
<br>
<input type=text name=template2 style='width:500px'>
<br>
<br>
<input type=button name=btnVerify value='Verify' OnClick='fnVerify();' style='width:100px'>
</form>
<OBJECT id=objSecuBSP style="LEFT: 0px; TOP: 0px" height=0 width=0
classid="CLSID:6283f7ea-608c-11dc-8314-0800200c9a66"
name=objSecuBSP VIEWASTEXT>
</OBJECT>
</BODY>
</HTML>
最佳答案
要在浏览器中启用生物特征验证,您需要从官网下载SDK:http://www.secugen.com/download/sdkrequest.htm
SecuBSP SDK Pro 手册说(参见 SecuBSP SDK Pro Manual.PDF)您需要在计算机上安装 2 个 DLL 文件:
SecuBSPMx.DLL 和SecuBSPMxCOM.DLL
第一个 Dll 是主模块,第二个是 COM 模块,可以从浏览器连接指纹识别器设备。
我强烈建议您阅读第 5 章。 ASP 中的 SecuBSP COM 编程(第 47 页)在上面的 PDF 手册中作为文档。
关于javascript - document.objSecuBSP.OpenDevice 生物识别问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43448283/
我正在尝试计算 iFrame 的高度,但不明白为什么 document.body.offsetHeight + document.body.bottomMargin 不等于 document.docu
我正在使用 Node/Mongoose/MongoDB 并尝试构建一个轮询应用程序。一个关键需求是跟踪单个用户对同一民意调查的响应如何随时间变化(他们一遍又一遍地进行同一民意调查)。 我有一个用户模型
首先,我不是普通的博主,我很困惑。如果我的问题不符合要求,请指导我。我会努力改进的。 我已提交 Microsoft Code Review 的 Microsoft CRM 插件。我是 JavaScri
谁能解释为什么使用类似的东西: gci -force "\\computername\c$\users\username\Documents" -recurse 或者 gci -force "\\co
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, over
这个问题已经有答案了: What is the (function() { } )() construct in JavaScript? (28 个回答) 已关闭 6 年前。 说实话,一开始我以为我可
document.getElementsByTagName("*") 适用于 IE/Firefox/Opera,但不适用于 Chrome 和 Safari。 document.all 适用于 IE/C
这个问题在这里已经有了答案: What is the difference between Document and document in JavaScript? (2 个答案) 关闭 8 年前。
我以某种方式发现将事件监听器添加到文档的行为有点奇怪。虽然向 HTMLElements 添加监听器工作正常,但向文档添加监听器不起作用。但奇怪的是,使用 jQuery 可以让它工作。 那么有人可以解释
谁能告诉我这两个 JavaScript 命令之间的区别? 这两个跨主要浏览器的兼容性是什么?我知道 documentElement 与大多数浏览器兼容。 谢谢 最佳答案 document.docume
什么时候应该使用 document.all 与 document.getElementById? 最佳答案 document.all 是 Microsoft 对 W3C 标准的专有扩展。 getEle
当升级到 react-native 0.61.2 时,这个问题出现了。我做到了从手机中删除了 apk 和自动链接使用 react-native link 然后 react-native run-and
当升级到 react-native 0.61.2 时,这个问题出现了。我做到了从手机中删除了 apk 和自动链接使用 react-native link 然后 react-native run-and
我将收到 tungstenite::Message ,它将包含来自客户端的bson文档。我可以将tungstenite::Message转换为Vec,但是如何在服务器端将其转换回 bson::docu
我这里有一个简单的疑问: 文档对象范围位于浏览器选项卡内:我的意思是如果我设置document.tab1 ='tab1' 在一个浏览器选项卡中 它在其他选项卡中不可用。 但是 document.coo
我经常使用并看到推荐的 dom 访问结构,例如这样动态地将内容添加到页面: loader = document.createElement('script'); loader.src = "myurl
我对 JQuery 还很陌生。我正在使用this JQuery 函数在元素上显示工具提示。 我根据我的需要(在这个社区的帮助下)以这种方式编辑了代码: $(document).ready(functi
我想知道哪个是运行js代码的正确方法,该代码根据窗口高度计算垂直菜单的高度并按时设置,不晚不早。 我正在使用 document.ready 但它并没有真正帮助我解决这个问题,它有时没有设置,我必须重新
我正在浏览一个 js 文件并发现这个声明var dataobj=document.all? document.all.id_name : document.getElementById("id_nam
想知道何时使用,这适用于什么浏览器? if (document.all&&document.getElementById) { // Some code block } 最佳答案 我认为没有任何重要的
我是一名优秀的程序员,十分优秀!