1
이 AJAX 메서드를 호출 할 때 "오류 : 정의되지 않음"메시지가 계속 나타납니다.JQuery AJAX로 IIS 호스팅 WCF 사용
$.ajax({
type: "GET",
async: false,
url: "localhost/ServiceHost/Security.svc/GetAllUserErrors",
data: "{ }",
dataType: "json",
contentType: "application/json; charset=utf-8",
dataFilter: function (data) { return data; },
success: function (data) {
for (var i = 0; i < data.d.length; i++) {
if (i % 2 == 0) rows += "<tr><td><input type=\"checkbox\"/></td>";
else rows += "<tr class=\"alternate-row\"><td><input type=\"checkbox\"/></td>";
rows += "<td>" + data.d.SyncTimeStamp.toString() + "</td>";
rows += "<td>" + data.d.Name.toString() + "</td>";
rows += "<td>" + data.d.Login.toString() + "</td>";
rows += "<td>" + data.d.NotificationText.toString() + "</td>";
rows += "<td class=\"options-width\"><a href=\"\" title=\"Edit\" class=\"icon-2 info-tooltip\"></a></td></tr>";
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus + ":" + errorThrown);
}
});
은 내가 WCF가 실행되고 있는지 알고 있지만 나는이 오류를 받고 있어요 이유를 알아낼 수 없습니다. 어떤 도움이 필요합니까?
'url'부분에 문제가있는 것 같습니다. 이 줄의 올바른 구문은 무엇입니까?
<services>
<service name="Security.WCFServiceLibrary.Security">
<endpoint address="" binding="wsDualHttpBinding" bindingConfiguration=""
contract="Security.WCFServiceLibrary.ISecurity" />
</service>
</services>
'async : false' - 좋은 엑소시스트를 아는 사람이 있습니까? : D – Andreas
web.config의 관련 섹션을 게시하십시오. – schglurps