使用RedirectToAction时,它不保留我的模型

时间:2013-01-08 16:17:56

标签: c# asp.net-mvc-3

当我捕捉HttpPost时,我正在重定向到另一个ResultAction。它保留了我的int值,但不是我的列表值。似乎无法弄清楚为什么。如果我得到页码为2的帖子,searchAction = 3和clearanceResults(一个列表)有25个项目。它回复了我对帖子的期望,但是当我进入Details ActionResult时,它只保留pageNumber和searchAction,而不是clearanceResults列表。奇怪的是,列表不为空,它的计数为0.

型号:

public class ClearanceListViewModel
{
    public ClearanceListViewModel()
    {
        this.pageNumber = 1;
        this.searchAction = 1;
        this.lastPage = false;
    }

    public ClearanceListViewModel(int pageNumber, int searchAction)
    {
        this.pageNumber = pageNumber;
        this.searchAction = searchAction;            
    }

    public int pageNumber { get; set; }
    public int searchAction { get; set; }
    public List<ClearanceViewModel> clearanceResults { get; set; }
    public bool lastPage { get; set; }
}

在控制器中发帖:

    [HttpPost]
    public ActionResult Details(ClearanceListViewModel model, FormCollection collection)
    {
        ClearanceListViewModel cModel = new ClearanceListViewModel();
        cModel = model;
        cModel.clearanceResults = model.clearanceResults;
        // do something
        return RedirectToAction("Details", cModel);
    }

控制器中的操作结果:

public ActionResult Details(ClearanceListViewModel model)
    {

        DataTable dt = new DataTable();
        List<ClearanceViewModel> clearanceList = new List<ClearanceViewModel>();

        //save any changes
        if (model.clearanceResults != null)
        {
            ClearanceSave(model);
            model.clearanceResults = null;
        }

        string inQuery = "select sku, qty from products";

        // call the query
        dt = AS400DAL.Instance.ExecuteQueryAsDataTable(inQuery);

        model = Utility.Utility.ProcessClearanceSkus(dt, model);
        return View("Index",model);
    }

任何输入都将不胜感激。

谢谢!

2 个答案:

答案 0 :(得分:2)

研究RedirectToAction的重载。没有允许模型通过。通常,您的帖子会修改数据库,然后您将重定向到从数据库重新创建模型的操作。由于重定向是在客户端发生的,因此重定向的请求与发出重定向的帖子完全分开,因此模型不会保留。

答案 1 :(得分:0)

使用会话存储模型

你可以这样做:

Session["mymodel"] = model;

然后重定向后,通过

从会话中获取模型
ClearanceListViewModel newModel = (ClearanceListViewModel)Session["mymodel"];

这将允许您成功传递模型