无法从视图中的异步方法返回值

时间:2014-07-12 01:39:48

标签: c# asp.net asp.net-mvc asp.net-mvc-4 async-await

我正在尝试从async html帮助器返回值,但是它提供了以下字符串而不是所需的值。

  

“System.Threading.Tasks.Task + WhenAllPromise`1 [System.Decimal]”

方法:

public async static Task<decimal> CalculateCurrency(this HtmlHelper helper, decimal amount, string from, string country)
    {
        if (await getValue(country))
        {
            string fromCurrency = string.IsNullOrEmpty(from) ? "USD" : from;
            string toCurrency = country;
            WebClient client = new WebClient();
            string url = string.Format("http://finance.yahoo.com/d/quotes.csv?e=.csv&f=sl1d1t1&s={0}{1}=X", fromCurrency.ToUpperInvariant(), toCurrency.ToUpperInvariant());
            Stream response = await client.OpenReadTaskAsync(url);
            StreamReader reader = new StreamReader(response);
            string yahooResponse = await reader.ReadLineAsync();
            response.Close();
            if (!string.IsNullOrWhiteSpace(yahooResponse))
            {
                string[] values = Regex.Split(yahooResponse, ",");
                if (values.Length > 0)
                {
                    decimal rate = System.Convert.ToDecimal(values[1]);
                    string res = string.Format("{0:0.00}", rate * amount);
                    return decimal.Parse(res);
                 }
            }
            return decimal.Zero;
        }
        return decimal.Zero;
    }

致电HTML帮助:

@Html.CalculateCurrency(22, "USD", "EUR")

1 个答案:

答案 0 :(得分:4)

视图不支持异步方法。因此,您可以获得结果类型的默认.ToString()函数的结果,该函数确实只返回类型名称。

选项:

  • 将代码移至控制器并使用await从异步顶级(非子级)操作调用。将数据传递到模型或ViewBag
  • 进行查看
  • 如果必须从视图或子操作中调用它,则转换为实际同步代码
  • 如果不可能,请尝试.Result,但请注意死锁。有关详情/链接,请参阅await vs Task.Wait - Deadlock?

注意:将async代码移动到子操作无济于事。