在同一个控制器中的两个ActionResults之间传递数据,在asp.net mvc中呈现不同的视图

时间:2017-04-16 18:07:14

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

我必须将iddemande从一个ActionResult传递到同一控制器中的另一个,但它因TempData或Session而失败,因为每个ActionResult都呈现不同的视图。 所以我需要你的帮助才能知道如何将这两个控制器之间的数据从“详细信息”传递到“Sortie”。

我的控制器:

    public ActionResult Details(int? num,int iddemande)
        {
            TempData["num"] = num;
            //Session["iddemande"] = iddemande;
            TempData["iddemande"] = iddemande;
            if (num == null)
            {
                return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
            }

            var listdemandes = (from d in db.Demande_Gabarit
                                join g in db.Gabarits
                                    on d.idPoste equals g.idPoste into ThisList
                                from g in ThisList.DefaultIfEmpty()
                                select new
                                {
                                    NumDemande = d.NumDemande,
                                    Emetteur = d.Emetteur,
                                    Date = d.Date,
                                    Quantite = d.Quantite,
                                    Designation = g.DesignationGabarit,
                                    Produit=d.Postes.Produits.Reference,
                                    Ligne = d.Ligne.designation
                                }).ToList().Select(x => new DemandeViewModel()
                                {
                                    NumDemande = x.NumDemande,
                                    Emetteur = x.Emetteur,
                                    Date = x.Date,
                                    Quantite = x.Quantite,
                                    DesignationGabarit = x.Designation,
                                    designation = x.Ligne,
                                    Reference= (int)x.Produit
                                }).Where(x => x.NumDemande == num);


            return View(listdemandes.DistinctBy(x=>x.DesignationGabarit));

        }
//Get Sortie
        public ActionResult Sortie(Int64 id)
        {
             TempData["codebarre"] = id;

            return View();

        }
        //Post Sortie
        [HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult Sortie(DemandeViewModel postData)
        {
            Int64 cb = postData.CodeBarre;

            var mvtrepository = new MvtRepository(db);
            var gabaritrepository = new GabaritRepository(db);





            if (Convert.ToInt64(TempData["codebarre"]) == cb)
            {
                var mvtInsert = mvtrepository.InsertMvt(DateTime.Now, Convert.ToInt64(TempData["codebarre"]), 2);
                var idDemande = Convert.ToInt32(TempData["iddemande"]);
                Demande_Gabarit demande =
                    demanderepository.Get(x => x.id_demande == idDemande).SingleOrDefault();

                demande.QtLivree = 1;
                demanderepository.Update(demande);

                return RedirectToAction("Details");
            }


            else
            {
                return View("Error");
            }

        }

1 个答案:

答案 0 :(得分:0)

TempData值仅适用于下一个请求。这意味着如果您为“详细信息”操作设置了一些值,并且接下来要导航到Sortie GET操作,您将能够检索它。但是,如果您提交表单并点击Sortie HTTPPost操作,它将无法使用。

一个选项是再次设置tempdata值,以便在下一个请求中也可以访问它。

public ActionResult Sortie(Int64 id)
{       
    TempData["codebarre"] = id; 
    var t = TempData["iddemande"];
    TempData["iddemande"] = t;
    return View();
}

另一个选项(更好/干净选项IMHO)是通过表单传递此值。因此,不是再次在GET操作中设置TempData,而是将此TempData值保存在表单元素中,并且在提交表单时,此值将发送到您的HttpPost操作方法。您可以在操作方法中添加一个参数来阅读它。

所以在您的Sortie视图表单中,

@using (Html.BeginForm())
{
    <input type="text" value="@TempData["iddemande"]" name="iddemande" />
    <input type="submit" value="submit" />
}

并在您的http帖子

[HttpPost]        
public ActionResult Sortie(DemandeViewModel postData,int iddemande)
{
   // You can use the value of iddemande
   // to do  : Return something
}

关于会话,只要您正确阅读它就应该有效。会话值将在设置后的所有请求中可用,直到会话结束。