如何在一个网站上运行多个Blazor应用

How to run multiple Blazor apps in single website(如何在一个网站上运行多个Blazor应用)
本文介绍了如何在一个网站上运行多个Blazor应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要创建一个网站,其中某些子功能将拆分到多个Blazor项目中。 所以主站点是一个Blazor应用程序,但是/private和/shop是单独的Blazor应用程序,用户需要注册和登录才能访问功能。 由于主网站应该有所有网站通用的导航栏(有登录和注册按钮),如何在Blazor应用程序之间通信?

如果我在主站点上设置身份验证并使用主站点中的AppState存储值,则在/Private中运行的子应用如何访问此数据(例如,is Logging in或用户名数据)。

推荐答案

这看起来很有希望:Blazor with multiple apps

我也一直在试图弄清楚如何做到这一点。上面的例子展示了如何在一个解决方案中将两个客户端Blazor应用程序与单个服务器端Blazor应用程序链接起来。我从该示例中获得的主要内容是在服务器端应用程序启动时向配置添加的内容。

        app.MapWhen(ctx => ctx.Request.Path.StartsWithSegments("/FirstApp"), first =>
        {
            first.UseBlazorFrameworkFiles("/FirstApp");
            first.UseStaticFiles();

            first.UseRouting();
            first.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
                endpoints.MapFallbackToFile("FirstApp/{*path:nonfile}", "FirstApp/index.html");
            });
        });

        app.MapWhen(ctx => ctx.Request.Path.StartsWithSegments("/SecondApp"), second =>
        {
            second.UseBlazorFrameworkFiles("/SecondApp");
            second.UseStaticFiles();

            second.UseRouting();
            second.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
                endpoints.MapFallbackToFile("SecondApp/{*path:nonfile}", "SecondApp/index.html");
            });
        });

希望这对您有帮助。

这篇关于如何在一个网站上运行多个Blazor应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)