我正在尝试从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")
答案 0 :(得分:4)
视图不支持异步方法。因此,您可以获得结果类型的默认.ToString()
函数的结果,该函数确实只返回类型名称。
选项:
await
从异步顶级(非子级)操作调用。将数据传递到模型或ViewBag
.Result
,但请注意死锁。有关详情/链接,请参阅await vs Task.Wait - Deadlock?。注意:将async
代码移动到子操作无济于事。