在dotnet核心中的视图组件之间共享模型

时间:2016-07-21 02:37:39

标签: c# razor asp.net-core asp.net-core-mvc

我的布局有多个视图组件,所有视图组件都使用相同的视图模型和控制器

那么如何在所有这些实例之间共享相同的viewmodel实例呢?

这是我的布局:

<!DOCTYPE html>
<html lang="es">
<head prefix="og: http://ogp.me/ns#">
    @await Component.InvokeAsync("Metadata", Share-Model)
</head>
<body>
    @await Component.InvokeAsync("Header", Share-Model)
    <article id="main-content-article">
        @await Component.InvokeAsync("Cover", Share-Model)
    </article>
    <section id="rest-fold-content">
        @RenderBody()
        <footer id="main-footer">
            @await Component.InvokeAsync("Footer")
        </footer>
    </section>

</body>
</html>

1 个答案:

答案 0 :(得分:4)

你几乎得到了它:

// inside View Component
public async Task<IViewComponentResult> InvokeAsync(SharedModel sharedmodel) { ... }

内部* .cshtml:

@model MyApp.Models.SharedModel
...
    <article id="main-content-article">
    @await Component.InvokeAsync("Cover", new { sharedmodel = model } )
</article>

请注意,匿名类中的属性与InvokeAsync方法中的参数具有相同的名称。尽管如此,documentation中都清楚地记录了这一点。