5

我正在开发一个新的 Windows Phone 8 应用程序。我正在连接到返回有效 json 数据的 web 服务。我正在使用 longlistselector 来显示数据。当我在 GetAccountList(); 中使用字符串 json 时,这工作正常;但是当从 DataServices 类接收数据时,我收到错误“无法将类型'System.Threading.Tasks.Task'隐式转换为字符串”。不知道出了什么问题。欢迎任何帮助。谢谢!

数据服务.cs

    public async static Task<string> GetRequest(string url)
    {
        HttpClient httpClient = new HttpClient();

        await Task.Delay(250);

        HttpResponseMessage response = await httpClient.GetAsync(url);
        response.EnsureSuccessStatusCode();
        string responseBody = await response.Content.ReadAsStringAsync();
        Debug.WriteLine(responseBody);
        return await Task.Run(() => responseBody);
    }

AccountViewModel.cs

 public static List<AccountModel> GetAccountList()
    {
        string json = DataService.GetRequest(url);
        //string json = @"{'accounts': [{'id': 1,'created': '2013-10-03T16:17:13+0200','name': 'account1 - test'},{'id': 2,'created': '2013-10-03T16:18:08+0200','name': 'account2'},{'id': 3,'created': '2013-10-04T13:23:23+0200','name': 'account3'}]}";
        List<AccountModel> accountList = new List<AccountModel>();

        var deserialized = JsonConvert.DeserializeObject<IDictionary<string, JArray>>(json);

        JArray recordList = deserialized["accounts"];


        foreach (JObject record in recordList)
        {
            accountList.Add(new AccountModel(record["name"].ToString(), record["id"].ToString()));
        }

        return accountList;
    }

更新:我稍微改变了它,现在就像一个魅力。谢谢你的帮助!数据服务.cs

     //GET REQUEST
    public async static Task<string> GetAsync(string url)
    {
        var httpClient = new HttpClient();

        var response = await httpClient.GetAsync(url);

        string content = await response.Content.ReadAsStringAsync();

        return content;
    }

AccountViewModel.cs

    public async void LoadData()
    {
        this.Json = await DataService.GetAsync(url);
        this.Accounts = GetAccounts(Json);
        this.AccountList = GetAccountList(Accounts);
        this.IsDataLoaded = true;
    }

    public static IList<AccountModel> GetAccounts(string json)
    {
        dynamic context = JObject.Parse(json);

        JArray deserialized = (JArray)JsonConvert.DeserializeObject(context.results.ToString());

        IList<AccountModel> accounts = deserialized.ToObject<IList<AccountModel>>();

        return accounts;
    }

    public static List<AlphaKeyGroup<AccountModel>> GetAccountList(IList<AccountModel> Accounts)
    {
        List<AlphaKeyGroup<AccountModel>> accountList = AlphaKeyGroup<AccountModel>.CreateGroups(Accounts,
                System.Threading.Thread.CurrentThread.CurrentUICulture,
                (AccountModel s) => { return s.Name; }, true);

        return accountList;
    }
4

2 回答 2

1

那行是你的问题:

return await Task.Run(() => responseBody);

你试过吗?:

return responseBody;

也试试这个:

public async static List<AccountModel> GetAccountList()
{
    string json = await DataService.GetRequest(url);
    ...
}
于 2013-10-19T17:30:50.803 回答
0

这里有几件事。首先是错误

无法将类型“System.Threading.Tasks.Task”隐式转换为字符串此错误来自对 的调用DataService.GetRequest(url)。此方法确实返回一个字符串。Tt 返回一个任务,其中 T 是一个字符串。您可以通过多种方式使用此方法的结果。第一个(也是最好的/最新的)是等待对该方法的调用。

string json = await DataService.GetResult(url);

进行此更改需要您将async键盘添加到您的方法中

public async static List<AccountModel> GetAccountList()

这是新的异步/等待模式。添加这些词告诉编译器方法 cal 是异步的。它允许您进行异步调用,但编写代码时就好像它是同步的一样。调用该方法的其他方式是直接使用 Task 对象。

// First is to use the Result property of the Task
// This is not recommended as it makes the call synchronous, and ties up the UI thread
string json = DataService.GetResult(url).Result;

// Next is to continue work after the Task completes.
DataService.GetResult(url).ContinueWith(t =>
{
    string json = t.Result;
    // other code here.
};

现在为 GetResult 方法。使用 async/await 模式需要您从方法中返回 Task。即使返回类型是任务,您的代码也应该返回 T。所以正如 Krekkon 提到的,您应该将返回行更改为

return responseBody;

这是一篇关于从异步方法返回任务的好文章。

于 2013-10-20T21:15:01.067 回答