0
我試圖在本地連接到簡單的wcf
服務,但每次出現一些錯誤。 這是我WCF
:在jQuery中使用AJAX連接到WCF服務
public class Service1 : IService1
{
[OperationContract]
[WebInvoke(Method = "POST")]
public int square(int number)
{
var res = number * number;
return res;
}
}
這是AJAX
部分:
$.ajax({
url: 'http://localhost:9247/Service1.svc/square',
method: 'POST',
contentType: 'application/json ;charset=utf-8',
data: { number: number },
dataType: 'json',
success: function (data) {
console.log(data);
$('#Result').val(data.d.res);
},
error: function (err) {
console.log(err);
}
});
});
有什麼不對?有人可以解釋我嗎?
「每次我看到一些錯誤的時間」 Errrr,它可能會幫助我們,如果你告訴我們*你看到的*錯誤消息。 ..? –
對象{readyState:0,responseJSON:未定義,狀態:0,statusText:「錯誤」} –