function Property() {
var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
var datastr = xmlhttp.responseText;
alert(datastr);
var dataobj = JSON.parse(datastr)
let dataarr = [];
for (dataobj에서 보자) {
dataarr.push(dataobj[i]);
}
}
}
xmlhttp.open("POST", "https://api.123321yun .com/api/device/queryProjectDeviceParamStatus?projId=66", true);
/* xmlhttp.open("POST", "https://api.123321yun.com/api/user/login?username=test123&password= 123456", true);*/ xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.send();
}ㅋㅋㅋ
서버 제공업체의 SESSION은 저장되지 않았죠?
AJAX를 사용하여 서버에 사용자의 SESSION이 존재하는지 확인하면 로그인됩니다. 그렇지 않은 경우 로그인하라는 메시지가 표시됩니다.