4

ホームコントローラーを持っています

public class HomeController : Controller
{
    public ActionResult Index()
    {
        var m = new ModelClass
                    {
                        Prop1 = 1,
                        Prop2 = "property 2"
                    };

        return View(m);
    }

    public ActionResult SubAction()
    {
        ModelState.AddModelError("key", "error message value");
        return RedirectToAction("Index");
    }

}

モデル:

public class ModelClass
{
    public int Prop1 { get; set; }
    public string Prop2 { get; set; }
}

および表示:

@model MvcApplication9.Models.ModelClass
@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

@Html.TextBoxFor(m => m.Prop1)
@Html.TextBoxFor(m => m.Prop2)

@Html.ValidationMessage("key")
<br/>
@Html.ActionLink("action", "SubAction", "Home")

actionactionlinkをクリックすると表示されるはずですが、アクションエラーerror message valueにリダイレクトするSubActionと失われます。これらのモデル エラーを保存して に設定し、アクションによって返されたビューに表示するにはどうすればよいですか?IndexModelStateSubActionIndex

4

1 に答える 1

5

エラーメッセージを表示したいだけの場合は、次を使用しますTempData

TempData.Add("error", "I'm all out of bubblegum...");

次に、他のアクションまたはそのビューで、次を使用できますTryGetValue

object message = string.Empty;

if(TempData.TryGetValue("error", out message)
{
     // do something with the message...
}
于 2012-12-30T08:57:46.950 に答える