Ajax與Wcf互動-JSON

來源:互聯網
上載者:User

在WCF的序列化中有DataContractJsonSerializer的格式化器,這就使得WCF相比傳統的Xml Web Serice多了一種輸入輸出的編碼格式:JSON.本文將介紹如何使用JSON實現Ajax與WCF之間的資料互動.

JSON的全稱是JavaScript Object Notation,是專門用於適應Ajax和Restful而出現的取代xml的編碼格式.相比xml而言,它更適合javascript,

第一步: 在VS2008中建立一個.Net framework 3.5的網站項目,命名為AjaxWcfJson,不用多說,不會建立的可以參考上一篇文章Ajax與WCF互動-WCF之美,

第二步: 在網站項目中添加一個啟用了Ajax的WCF服務: WcfJsonService.svc,將其中代碼更改為如下:

[DataContract]
public class Person
{
[DataMember]
public string Name { get; set; }
[DataMember]
public string Address { get; set;}
}
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class WcfJsonService
{
static List<Person> list = new List<Person>();

// 添加 [WebGet] 屬性以使用 HTTP GET
[OperationContract]
[WebInvoke(RequestFormat = WebMessageFormat.Json)]
public bool CreatePerson(Person p)
{
// 在此處添加操作實現
foreach (Person person in list)
{
if (p.Name ==person.Name)
{
return false;
}
}
list.Add(p);
Trace.WriteLine("-----------------------------------------");
foreach (Person person in list)
{
Trace.WriteLine("Name:" + person.Name + ",Address:" + person.Address);
}
Trace.WriteLine("-----------------------------------------");
return true;
}

[OperationContract]
[WebInvoke(ResponseFormat=WebMessageFormat.Json)]
public Person GetPerson(string name)
{
foreach(Person p in list)
{
if(p.Name == name)
{
return p;
}
}
return new Person();
}
// 在此處添加更多操作並使用 [OperationContract] 標記它們
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.