在 ASP.NET Mvc 中我们经常在嵌套界面时,经常会用到,那么这两者的区别和联系在哪呢?
Partial 定义如下:
public static IHtmlContent Partial(this IHtmlHelper htmlHelper, string partialViewName);
并且有 4个重载 ,包含异步方法 ,返回值为 IHtmlcontent
RenderPartial 定义如下:
public static void RenderPartial(this IHtmlHelper htmlHelper, string partialViewName);
返回值为 void
微软官方的一篇文章,关于如何在.NET Core 中使用 Partial Views
https://docs.microsoft.com/en-us/aspnet/core/mvc/views/partial