本文介绍了ASP.NET MVC3剃刀-如何有条件地退出或结束或返回或中断局部视图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用Razor,您如何有条件地退出或结束或返回或中断部分视图?

With Razor, how do you conditionally quit or end or return or break a partial view?

@if (Model == null)
{
    return;
}

推荐答案

不,您不在视图中return,只是在主视图中不包括这样的部分:

No, you don't return in a view, you simply don't include such partial in the main view:

@if (Model != null) {
    @Html.Partial("somePartial", Model)
}

,或者如果您使用RenderPartial:

@if (Model != null) {
    @{Html.RenderPartial("somePartial", Model);}
}

这篇关于ASP.NET MVC3剃刀-如何有条件地退出或结束或返回或中断局部视图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 23:03