RenderPartial()在哪里进入ASP.Net 5 MVC 6?

时间:2016-01-06 19:04:15

标签: asp.net-core asp.net-core-mvc

在ASP.Net 5 MVC 6中,有Html.RenderPartialAsync但没有Html.RenderPartial。做一些挖掘我发现有一个名为View Components的新东西,它似乎是部分视图的更强大版本,但是面向动态的东西。 MVC 6丢了RenderPartial还是我没有找到任何文件?我想用它来将静态导航菜单文件包含在主布局中。

1 个答案:

答案 0 :(得分:4)

RenderPartial中确实不存在

"Microsoft.AspNet.Mvc": "6.0.0-rc1-final"。但是,它已经实施,可能会包含在6.0.0-rc2中。 https://github.com/aspnet/Mvc/issues/3705

解决方法是使用RenderPartialAsync,它运行正常。