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.
我一定遗漏了一些明显的东西。我在控制器 B 中有一个视图 A,它需要在控制器 Z 中调用和呈现操作方法 Y。
我应该在视图 A 中做这样的事情吗?我在 VS 中遇到了关于它如何无法解决操作“/Z/Y”的错误
@Html.RenderAction("/Z/Y", new ModelUsedInActionMethodY())
你需要使用:
@Html.RenderAction("Y", "Z")
这将路由Y到ZController. 有关. _ _Html.RenderAction()
Y
ZController
Html.RenderAction()