0
true 또는 false 인 webmethod 응답을 분석하는 if 문을 포함하려고합니다. 응답이 틀린 경우 게시물이 성공했거나 응답이 거짓 일 경우 게시가 성공하지 못했다는 사실을 사용자에게 알려주고 싶습니다.WebMethod 응답 및 사용 If 문 응답 사용자 기반 응답
나는 xhttp.responseText를 사용하여 응답을 얻을 수 있지만 아래로 내 자바 스크립트 안에 if 문에 그를 구축하는 방법을 알아낼 수 없습니다 :
//JavaScript that Posts to WebMethod
<script>
function createNewComment() {
var xhttp = new XMLHttpRequest();
var url = "http://localhost:57766/PALWebService.asmx/insertComment"
var a = document.getElementsByName("existingguid")[0].value;
var b = document.getElementsByName("newcomment")[0].value;
var c = 'existingguid=' + a + '&newcomment=' + b;
xhttp.open("POST", url, true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
}
};
xhttp.send(c);
}
</script>