从javascript访问WCF服务

时间:2015-06-27 07:57:53

标签: javascript json wcf wcf-data-services

我有一个WCF服务。在javascript中,如何访问此服务。 其中一个功能如下。如何在javascript,ajax中访问此函数。

[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);

1 个答案:

答案 0 :(得分: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);
        }
    });