近日测试指纹
在与WEB连接时采用前台js调用,与指纹机的连接及释放边接,关闭指纹机操作正常,但读取指纹机信息时比如时间时就出现:(类型不匹配)型态不符合(fkid.GetDeviceTime(adate);这一行),相关代码如下:
var fkid=document.getElementById("fkocx");
fkid.connectUSB(1,1263);
var adate = new Date();
try
{ fkid.GetDeviceTime(adate);}
catch(e)
{ alert(e.description);}
但是在与win连接时同样调用函数则执行正常,相关代码如下:
Dim vdwDate As Date
FKAttend.ConnectUSB(1, 1263)
FKAttend.GetDeviceTime(vdwDate)
TextBox3.Text = vdwDate
FKAttend.DisConnect()
哪路大虾能帮看看错误在哪里?在js下要如何修改?
先谢过!