asp.net-mvc – Html.Partial或Html.RenderPartial与MVC3?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – Html.Partial或Html.RenderPartial与MVC3?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
即使看到以下解释,我完全感到困惑.
<div>
  @Html.Partial("_FeaturedProduct")
</div>

部分视图可以在布局页面显示(或者使用MVC 2/3 / ASPX,主页面)以及常规视图.

在某些情况下,您可能希望将其直接写入HTTP Response流,而不是部分视图呈现结果(部分/视图使用MvcHtmlString / StringWriter).为此,请使用Html.RenderPartial帮助器.

<div>
  @Html.RenderPartial("_FeaturedProduct")
</div>

有人可以告诉我这是什么意思吗?什么情况下,我可能想直接写入HTTP响应等.如果我的部分视图只包含一行如下:

<h1>Hello</h1>

我应该用什么和为什么?如果我使用其他的会发生什么?

以下让我更加困惑:“使用Html.RenderPartial流式传输图像或其他以媒体为中心的元素或更快的下载时间非常重要.”

解决方法

请参阅下面的回应.

The only difference is that Partial returns an MvcHtmlString,and must
be called inside <%= %>,whereas RenderPartial returnsvoid and renders
directly to the view.

If you look at the source code,you’ll see that they both call the
same internal method,passing a StringWriter for it to render to.

You would call Partial if you want to view,save,or manipulate the
generated HTML instead of writing it to the page.

What is the difference (if any) between Html.Partial(view,model) and Html.RenderPartial(view,model) in MVC2?

原文链接:https://www.f2er.com/aspnet/246208.html

猜你在找的asp.Net相关文章