0

Google API を使用して変換しようとしています。しかし、私は取得しており、Index was out of range エラーであり、フォーム コレクションは必要なデータ (amount、currencyFrom、currencyTo) を収集していません。私は何を間違っていますか?

為替レート コントローラ:

public ActionResult Index()
    {
        IEnumerable<CommonLayer.Currency> currency = CurrencyManager.Instance.getAllCurrencies().ToList();
        return View(currency);
    }

    [HttpPost]
    public ActionResult Index(FormCollection fc)
    {
        if (ModelState.IsValid)
        {
            WebClient web = new WebClient();

            string url = string.Format("http://www.google.com/ig/calculator?hl=en&q={2}{0}%3D%3F{1}", (string)fc[1].ToUpper(), (string)fc[2].ToUpper(), (string)fc[0]);

            string response = web.DownloadString(url);

            Regex regex = new Regex("rhs: \\\"(\\d*.\\d*)");
            Match match = regex.Match(response);

            decimal rate = System.Convert.ToDecimal(match.Groups[1].Value);
            ViewBag["rate"] = (string)fc[0] + " " + (string)fc[1] + "  =  " + rate + " " + (string)fc[2];
        }
        return View();
    }

為替レート表示:

 @model IEnumerable<CommonLayer.Currency>

@{
    ViewBag.Title = "Exchange Rates";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

@Html.Partial("_ExchangeRatePartial");

部分図:

       @model IEnumerable<CommonLayer.Currency>

    <br /> <br /> 

    @Html.BeginForm())
    {
       Convert: <input type="text" size="5" value="1" />
        @Html.DropDownList("Currency", Model.Select(p => new SelectListItem{ Text = p.ID, Value = p.Name})) 
 to  
       @Html.DropDownList("Currency", Model.Select(p => new SelectListItem { Text = p.ID, Value = p.Name}))
        <br /> <br /> <input type="submit" name="Convert" />
    }

    @if(ViewData["rate"] != null)
    {
        @ViewData["rate"]
    }
4

1 に答える 1