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

本文关键字:组件 之间 共享 模型 视图 dotnet 核心 | 更新日期: 2023-09-27 17:58:02

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

那么我该如何在它们之间共享同一个视图模型实例呢?

这是我的布局:

<!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>

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

你几乎做到了:

// 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方法中的参数同名。所有这些都清楚地记录在文档中。