2015-06-27 187 views
-1

我有一個WCF服務。在javascript中,如何訪問此服務。 其中一個功能如下。如何在javascript,ajax中訪問這個函數。從javascript訪問WCF服務

[OperationContract] 
[WebGet(UriTemplate = "Get_PersonelBilgi/Kul_Ad={kul_ad},Sifre={sifre}", 
     RequestFormat = WebMessageFormat.Json, 
     ResponseFormat = WebMessageFormat.Json, 
     BodyStyle = WebMessageBodyStyle.Bare)] 
Personel Get_PersonelBilgi(string kul_ad,string sifre); 

回答

0

如果你使用jQuery,您可以使用這樣的代碼,我們的數據替換:

$.ajax({ 
     type: "GET", 
     url: "http://localhost:YourPort/YourService/NameOfService.svc/Get_PersonelBilgi/Kul_Ad=0&Sifre=0", 
     contentType: "application/json;charset=utf-8", 
     dataType: "json", 
     success: function (data) { 
      alert(data); 
     }, 
     error: function (xhr) { 
      alert(xhr.responseText); 
     } 
    });