<button onclick="loadPhones()">WebScada</button>
<script>
function loadPhones() {
var xhr = new XMLHttpRequest();
xhr.open('post','http://127.0.0.0:8080/security/signIn',true,'login','pas');
xhr.send();
if (xhr.status != 200) {
// обработать ошибку
alert('Ошибка ' + xhr.status + ': ' + xhr.statusText);
} else {
// вывести результат
alert(xhr.responseText);
}
}
let data = new FormData()
data.append('key', value)
.....
xhr.send(data)
console.log(xhr.getResponseHeader("content-type"));
console.log(xhr.responseXML);
console.log(JSON.parse(xhr.responseXML));