我是 Windows Phone 开发的新手。我正在开发一个从 web 服务获取 json 并使用 json.net 解析它以在 windows phone 中显示数据的应用程序。这是示例 json。
[
{
"id": "001",
"title": "title1",
"content": "sample content",
"category_id": "3",
"image": "defaultimg.jpg"
},
{
"id": "021",
"title": "title2",
"content": "sample content",
"category_id": "1",
"image": "defaultimg2.jpg"
},
{
"id": "011",
"title": "title3",
"content": "sample content",
"category_id": "3",
"image": "defaultimg22.jpg"
},
]
是否可以将图像与这种格式绑定?还是应该是 url 格式?