0

我正在尝试将我的 android 应用程序带到 windows phone 8 环境中。

问题很明确,如何将我的 json 数据从 web api 获取到我的应用程序中?

它可以是 LongListSelector 或 Grid 来填充.. 没关系。

我在 android 应用程序中使用了 $ajax 或 $getJson,我再次在这里问了这个问题,你们很酷的人帮助了我。

关联

我现在应该在这里做 httprequest 什么的,但找不到一个例子。任何人都可以通过小例子或清晰的链接等帮助我吗?

谢谢。

4

1 回答 1

2

You should use the HttpRequest-class.

A good example can be found at the MSDN-website: http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.begingetrequeststream%28v=vs.100%29.aspx

Alternatively, do a google search for "HttpWebRequest async sample".

When you do that, you will receive a string. You should then create a class that mimics your JSON object. Then you can serialize the JSON into the class and bind it to your LongListSelector.

You could use the built-in DataContractSerializer for deserialisation but I prefer the serializer JSON.NET which can be found here (or via NuGet): http://james.newtonking.com/projects/json-net.aspx

于 2013-05-15T13:10:23.703 回答