Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用mvc 3,我在业务层中设置了viewBag。我在业务层中继承了控制器。但不幸的是,viewbag中的值没有进入View。有什么方法可以在业务层设置 viewbag。
主要用于在ViewBag控制器中设置数据,然后将其传递给视图。我不建议尝试ViewBag在您的业务应用程序中设置项目,而是创建一个函数来返回您想要的数据并将其分配到Controller.
ViewBag
Controller
你可以这样做:
public ActionResult YourController() { ViewBag.YourItem = businessObject.YourFunction(); return View(); }