1

我有一个带有 Index 方法的控制器,该方法具有几个可选参数,用于过滤返回到视图的结果。

public ActionResult Index(string searchString, string location, string status) {
    ...

product = repository.GetProducts(string searchString, string location, string status);

return View(product);
}

我想实现如下所示的 PRG 模式,但我不知道如何去做。

[HttpPost]
public ActionResult Index(ViewModel model) {
    ...
    if (ModelState.IsValid) {
        product = repository.GetProducts(model);
    return RedirectToAction(); // Not sure how to handle the redirect
    }
return View(model);
}

我的理解是,如果出现以下情况,则不应使用此模式:

  • 除非您实际存储了一些数据,否则您不需要使用此模式(我不是)
  • 您不会使用此模式来避免刷新页面时来自 IE 的“您确定要重新提交”消息(有罪)

我应该尝试使用这种模式吗?如果是这样,我将如何处理?

谢谢!

4

2 回答 2

5

PRG代表Post-Redirect-Get。这意味着当您将一些数据回传到服务器时,您应该重定向到一个GET动作。

为什么我们需要这样做?

想象一下,您有一个表单,您可以在其中输入客户注册信息并单击提交,然后将其发布到 HttpPost 操作方法。您正在从表单中读取数据并将其保存到数据库中,并且您没有进行重定向。相反,您将停留在同一页面上。现在,如果您刷新浏览器(只需按 F5 按钮),浏览器将再次执行类似的表单发布,您的 HttpPost Action 方法将再次执行相同的操作。IE; 它将再次保存相同的表单数据。这是个问题。为了避免这个问题,我们使用 PRG 模式。

PRG中,您单击提交,HttpPostAction 方法将保存您的数据(或它必须做的任何事情),然后重定向到Get请求。所以浏览器会向Get那个 Action 发送一个 Request

RedirectToAction方法HTTP 302向浏览器返回响应,这会导致浏览器对指定的操作发出 GET 请求。

[HttpPost]
public ActionResult SaveCustemer(string name,string age)
{
   //Save the customer here
  return RedirectToAction("CustomerList");

}

上面的代码将保存数据并重定向到 Customer List 操作方法。所以你的浏览器 url 将是 now http://yourdomain/yourcontroller/CustomerList。现在,如果您刷新浏览器。IT 不会保存重复的数据。它只会加载 CustomerList 页面。

在您的搜索操作方法中,您不需要重定向到获取操作。您在products变量中有搜索结果。只需将其传递给所需的视图即可显示结果。您不必担心重复的表单发布。所以你很好。

[HttpPost]
public ActionResult Index(ViewModel model) {

    if (ModelState.IsValid) {
        var products = repository.GetProducts(model);
        return View(products)
    }
  return View(model);
}
于 2012-05-17T00:45:38.733 回答
2

重定向只是一个 ActionResult ,它是另一个动作。因此,如果您有一个名为 SearchResults 的操作,您只需说

return RedirectToAction("SearchResults");

如果动作在另一个控制器中......

return RedirectToAction("SearchResults", "ControllerName");

带参数...

return RedirectToAction("SearchResults", "ControllerName", new { parameterName = model.PropertyName });

更新

我突然想到,您可能还希望选择将复杂对象发送到下一个操作,在这种情况下您的选择有限,TempData 是首选方法

使用你的方法

[HttpPost]
public ActionResult Index(ViewModel model) {
    ...
    if (ModelState.IsValid) {
        product = repository.GetProducts(model);
        TempData["Product"] = product;
        return RedirectToAction("NextAction");
    }
    return View(model);
}

public ActionResult NextAction() {
    var model = new Product();
    if(TempData["Product"] != null)
       model = (Product)TempData["Product"];
    Return View(model);
}
于 2012-05-17T00:44:23.943 回答