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 (let i in 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();
}
Xiaobaiは、ログインステータスが保存できない問題を解決したいと考えています
サーバープロバイダーがセッションを保存しませんでしたか?
AJAX を使用して、ユーザーのセッションがサーバーに存在するかどうかを判断できます。存在する場合はログインされます。存在しない場合は、ログインするよう求められます。