我有一个部分视图的mvc视图.控制器中有一个ActionResult方法将返回一个PartialView.所以,我需要将ViewBag数据从ActionResult方法传递给部分视图.
这是我的控制器
public class PropertyController : BaseController { public ActionResult Index() { return View(); } public ActionResult Step1() { ViewBag.Hello = "Hello"; return PartialView(); } }
在Index.cshtml视图中
@Html.Partial("Step1")
Step1.cshtml部分视图
@ViewBag.Hello
解决方法
“子操作遵循与父操作不同的控制器/模型/查看生命周期,因此它们不共享ViewData / ViewBag”.
答案提供了传递数据的另一种方式.
Does a child action share the same ViewBag with its “parents” action?