asp.net-mvc – 我们可以传递模型作为参数在RedirectToAction吗?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 我们可以传递模型作为参数在RedirectToAction吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道,有任何技术,所以我们可以传递Model作为参数在RedirectToAction

例如:

public class Student{
    public int Id{get;set;}
    public string Name{get;set;}
}

控制器

public class StudentController : Controller
{
    public ActionResult FillStudent()
    {
        return View();
    }
    [HttpPost]
    public ActionResult FillStudent(Student student1)
    {
        return RedirectToAction("GetStudent","Student",new{student=student1});
    }
    public ActionResult GetStudent(Student student)
    {
        return View();
    }
}

我的问题 – 我可以传递学生模型在RedirectToAction吗?

解决方法

您可以使用TempData
[HttpPost]
public ActionResult FillStudent(Student student1)
{
    TempData["student"]= new Student();
    return RedirectToAction("GetStudent","Student");
}

[HttpGet]
public ActionResult GetStudent(Student passedStd)
{
    Student std=(Student)TempData["student"];
    return View();
}

方法2:使用查询字符串数据传递

或者你可以用查询字符串的帮助框架它

return RedirectToAction("GetStudent",new {Name="John",Class="clsz"});

这将生成一个GET请求

Student/GetStudent?Name=John & Class=clsz

但确保你有[HttpGet],因为RedirectToAction将发出GET请求(302)

原文链接:https://www.f2er.com/aspnet/254009.html

猜你在找的asp.Net相关文章