我的 JSON 来自 url http://192.168.1.50/vantaa/api/place
,它看起来像这样。
第一个问题是如何从这个 JSON 中获取数据。我需要在 xaml 列表页面中绑定它。
{
places: [
{
id: "243",
title: "Abrams ja Husbacka",
latitude: "60.25627906773524",
longitude: "24.842572314971903",
www: ""
},
{
id: "149",
title: "Alkupamaus",
latitude: "60.27657927084334",
longitude: "24.848795039886454",
www: ""
}
]
}
我需要在新的 xaml 页面中使用下面的 JSON。为了低于 JSON,url 看起来像这样http://192.168.1.50/vantaa/api/place/243
例如,有一个列表页面显示上述 JSON 的数据。一旦用户单击地点 id 243 的文本块。它将导航到新页面,然后显示地点 id 243 的绑定 JSON 数据,如下所示。(图像数组是动态的)。
{
id: "243",
title: "test 9 image",
description: "test 9 image",
latitude: "60.80943244516333",
longitude: "26.14554653906248",
www: "",
phone: "",
email: "",
contact_person: "",
address: {
street: "asdf",
postal_code: "12345",
post_office: "Vantaa"
},
images: [
{
id: "100",
filename: "50c95e58b30db1.JPG",
path: "assets/images/"
},
{
id: "101",
filename: "50c95e59207ad2.jpg",
path: "assets/images/"
},
{
id: "102",
filename: "50c95e599076f3.jpg",
path: "assets/images/"
}
]
}
关于这个问题有什么建议吗?
ps:我是WP和C#的新手,所以请简单解释一下。