我們有一個json序列化器和解串器下載,它讀取配置文件對象查找,但它沒有放入列表中的客戶端項目。這裏是JSONJson沒有將元素的子陣列映射到我的對象
{"Profile": [{
"Name":"Joe",
"Last :"Doe",
"Client":
{
"ClientId":"1",
"Product":"Apple",
"Message":"Peter likes apples"
},
"Date":"2012-02-14"
}]}
所以在我的個人資料類,我有
public class Profile
{
public string Name {get; set;}
public string Last {get; set;}
public List<Client> Client {get; set;}
public DateTime dDate {get; set;}
public Profile()
{
}
public Profile BuildEntity()
{
Profile profile = new Profile();
profile.Name = this.Name;
profile.Last = this.LastName;
profile.Client = this.client;
profile.dDate = this.dDate;
return dDate;
}
}
現在,當我調試的所有項目都除了列表值。有誰知道它可能是什麼?
注:這是被派駐到我們的Profile.asmx Web服務
問候
在離開代碼的相關代碼方面做得很好。另外,什麼樣的問題是'「有人知道它可能是什麼嗎?」'Mebe這是一隻長頸鹿。 – 2012-04-03 14:43:06
Boo,感謝您的留言,我正在與JSON和Web服務合作。我會很樂意提供更多信息。什麼是相關的代碼片?不需要粗魯:) – user710502 2012-04-03 14:56:26
'dDate'和'Date'有什麼區別?另外,你使用的是什麼JSON庫? – 2012-04-03 15:01:07