Does a child action share the same ViewBag with its “parents” action?

时光毁灭记忆、已成空白 提交于 2019-11-27 04:29:07

问题


I am confused with this: I have an action ,say Parent ,and in the corresponding view file ,I have called a child action ,say Child ,both Parent and Child actions are in the same controller.

and I need the Child action and the Parent action to share some data in the ViewBag.Now ,what I should do ?Here is my question:

when I call the Child action in parent's view file ,I pass the viewbag to it like this: @Html.Action(ViewBag). in my child action ,I do this:

public PartialViewResult Child(Object ViewBag)
{
  //using the data in ViewBag
}

Is this the right way ? Does the viewbag object passed by reference or it is a different object then the original viewbag(more memory needed)?

Or if the Child action is sharing the viewbag with its calling parent Action by default?

From Darin Dimitrov's answer ,I knew that I can't do something like this:@Html.Action(ViewBag)

But I really need to pass the child action muti-parameters,what can I do ?


回答1:


Child actions follow a different controller/model/view lifecycle than parent actions. As a result they do not share ViewData/ViewBag. If you want to pass parameters to a child action from the parent you could do this:

@Html.Action("Child", new { message = ViewBag.Message })

and in the child action:

public ActionResult Child(string message)
{
    ...
}



回答2:


There is a way, but you have to create a custom abstract class as the base class for your razor views. Then expose whatever you need to from parent to child actions. This is how I get the root controller's ViewBag inside a class inheriting from WebViewPage

    private dynamic GetPageViewBag()
    {
        if (Html == null || Html.ViewContext == null) //this means that the page is root or parial view
        {
            return ViewBag;
        }
        ControllerBase controller = Html.ViewContext.Controller;

        while (controller.ControllerContext.IsChildAction)  //traverse hierachy to get root controller
        {
            controller = controller.ControllerContext.ParentActionViewContext.Controller;
        }
        return controller.ViewBag;
    }


来源:https://stackoverflow.com/questions/7737124/does-a-child-action-share-the-same-viewbag-with-its-parents-action

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!