我有三個json鏈接。其中一個鏈接包含類別(MenuCategory),即(starters,maindishes)和兩個鏈接包含(MenuItem)的一些數據(Itemname,Price,Picture)。你可以在下面的圖片中看到,初學者和Maindishes是來自一個鏈接的標題,它們下面的項目是初學者和Maindishes來自兩個不同的鏈接(.../menuitems/1和../menuitems/2)。如何獲取這個數據到longlistselector中,如圖所示。我將Json數據存入我的應用程序,但我需要在LLS中顯示它們。如何結合他們?如何讓json鏈接數據綁定到windows phone中的longlistselector?
// http://xxxxxx.net/restaurant/category/1
// http://xxxxxx.net//restaurant/menuitems/1 //和http://xxxxxx.net/restaurant/menuitems/2
public class MenuItem
{
public int Menuitemid { get; set; }
public int Menucategoryid { get; set; }
public string Itemname { get; set; }
public double Price { get; set; }
public string Picture { get; set; }
}
public class MenuCategory
{
public int Menucategoryid { get; set; }
public int Menuid { get; set; }
public string Categoryname { get; set; }
public string Description { get; set; }
public bool Active { get; set; }
public string Createddate { get; set; }
public object Modifieddate { get; set; }
}
public class MenuCategoryRootObject
{
public List<MenuCategory> data { get; set; }
}
你可以很容易地通過結合 – techloverr
請告訴我 –
過得好在收集數據實現這一目標? – techloverr