gpt4 book ai didi

asp.net-core - 升级到预览版 6 后 Blazor 子应用程序 404 错误

转载 作者:行者123 更新时间:2023-12-04 14:19:24 25 4
gpt4 key购买 nike

在 Blazor Preview 5 (.Net Core Hosted) 中,我使用以下命令成功地将该应用程序配置为 Asp.net Core 站点上的子应用程序:

app.UseRouting();

app.UseEndpoints(endpoints =>
{
endpoints.MapDefaultControllerRoute();
endpoints.MapRazorPages();
});

app.UseMvcWithDefaultRoute();

app.Map("/superadmin", child => {
child.UseBlazor<BlazorCoreHosted.SuperAdmin.Startup>(); });

我现在正在尝试升级到预览版 6,但是当应用程序加载时,我收到 404 错误“加载资源失败:服务器响应状态为 404(未找到)”

正在寻找的 URL 是 - http://localhost:52112/superadmin/_framework/blazor.webassembly.js

我已经尝试了以下链接中的说明以及相同的变体,但无法克服错误。

https://devblogs.microsoft.com/aspnet/asp-net-core-and-blazor-updates-in-net-core-3-0-preview-6/

谁能建议如何克服这个错误?

谢谢

标记

最佳答案

看起来您的应用程序仍然引用了 .NET Core Preview 5,因为 UseBlazor现在不见了。

app.UseRouting();

app.UseEndpoints(endpoints =>
{
endpoints.MapDefaultControllerRoute();
endpoints.MapRazorPages();
});
app.Map("/superadmin", child =>
{
child.UseRouting();
child.UseEndpoints(endpoints =>
{
endpoints.MapFallbackToClientSideBlazor<Client.Startup>("index.html");
});
child.UseClientSideBlazorFiles<Client.Startup>();
});
app.Map("/superadmin2", child =>
{
child.UseRouting();
child.UseEndpoints(endpoints =>
{
endpoints.MapFallbackToClientSideBlazor<Client2.Startup>("index.html");
});
child.UseClientSideBlazorFiles<Client2.Startup>();
});

关于asp.net-core - 升级到预览版 6 后 Blazor 子应用程序 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56586677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com