0

我是 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 格式?

4

1 回答 1

0

与其传递图像路径,不如传递一个 base64 编码的图像字符串,然后在视图中使用它。

于 2015-01-27T18:02:45.117 回答