난 앱을 만들기 위해 Ratchet 2을 사용하고 있습니다. 나는 간단한 아약스 전화를 걸 내가 불 tryLogin()
가 AJAX 호출이 잘 실행 내 버튼을 클릭하지만 페이지를 다시로드 할 때 너무push.js가없는 Ajax 요청
function tryLogin() {
var hxr;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.open("POST", "absolutePathToMyScript");
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
var obj = JSON.parse(xhr.responseText);
console.log(obj);
//spinner.classList.remove("active");
}
}
var data = {
login: document.querySelector('#loginForm input[name="login"]').value,
pwd: document.querySelector('#loginForm input[name="pwd"]').value
};
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send("login=" + data.login + "&pwd=" + data.pwd);
}
같은 응답을 얻기 위해 노력하고있어. push.js에서 온 것으로 가정합니다
ajax 호출에서 push.js를 무시할 수있는 솔루션이 있습니까?