我是WCF的新手。我創建了一個WCF服務,並將數據作爲JSON數據返回。我將返回數據分配給GridView,它完美地顯示了數據。如何在C#中顯示JSON數據
[OperationContract]
[WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, UriTemplate="employee/{search}")]
List<Employee> Listing(string search);
現在,我想在<的div元素>(驗證數據)顯示JSON字符串。我試圖表明返回的數據,
dvJson.InnerHtml = esc.Listing("s");
它顯示像使用C#DIV元素此
Employee[]
如何顯示JSON字符串?
在此先感謝。
它顯示輸出:[{ 「__type」: 「僱員:#Org」, 「ID」:1, 「名稱」: 「拉加」},{ 「__類型」: 「僱員:#Org」, 「ID」:2 「名稱」: 「MANISHA」}]。我們可以通過'__type'來獲取數據:「Employee:#Org」'? – Jesuraja
n您的web.config:而不是' '元素使用' '爲您的'endpointBehaviors',例如: ' endpointBehaviors> <行爲名稱= 「MyServiceEndpoint」> endpointBehaviors>' –
http://stackoverflow.com/questions/627356/how-to-not-serialize-the-type-property-on- JSON對象 –