如何在JavaScript中为PTZ摄像机发送ISAPI命令

时间:2019-07-18 11:28:58

标签: javascript ajax isapi

我必须用Hikvision PTZ摄像机控制Javascript / HTML中的ISAPI命令。

我在Postman中尝试过该命令可以正常工作,仅当我进行ajax调用时,我将xhrStatus设置为0。

function clickGoPreset(){

$.ajax({
url: "http://usn:pwd@192.168.xx.xx/ISAPI/PTZ/channels",
data: "", 
type: 'GET',
contentType: "text/xml",
dataType: "text",
success : parse,
error : function (xhr, status, thrownError){  

   console.log(xhr.status);          
   console.log(thrownError.toString());
} 

});

}

所需结果是具有预设值的相机的xml响应

0 个答案:

没有答案