Blazor 服务器端支持的浏览器

Blazor serverside supported browsers

我正在寻找规范,ASP.NET Core 3.0 Blazor 服务器端 Razor 组件支持哪些浏览器。

在我的 Razor index.cshtml 中使用此代码在 Chrome、Firefox 中显示新闻列表,但在 IE 11 中没有任何内容。

@(await Html.RenderComponentAsync<WEKA.Components.NewsList>(RenderMode.Server))

尝试谷歌搜索但没有成功。不确定它是不受支持还是存在一些错误。

支持的平台在Docs

表示您需要在 polyfill.io 的底部为 IE 11 添加额外的 polyfill。

This 如果您 运行 任何问题,问题也可能提供更多见解。

This github repo 有一个 blazor 的 polyfill,它也可能有帮助。

自述文件中也有安装说明。