在ASP.Net 5 MVC 6中,有Html.RenderPartialAsync
但没有Html.RenderPartial
。做一些挖掘我发现有一个名为View Components
的新东西,它似乎是部分视图的更强大版本,但是面向动态的东西。 MVC 6丢了RenderPartial
还是我没有找到任何文件?我想用它来将静态导航菜单文件包含在主布局中。
答案 0 :(得分:4)
RenderPartial
中确实不存在 "Microsoft.AspNet.Mvc": "6.0.0-rc1-final"
。但是,它已经实施,可能会包含在6.0.0-rc2
中。 https://github.com/aspnet/Mvc/issues/3705
解决方法是使用RenderPartialAsync
,它运行正常。