使用.NET Core和服务器端Blazor的最新发行版,我在现有的MVC应用程序中实现了Blazor组件(感谢Chris https://chrissainty.com/using-blazor-components-in-an-existing-mvc-application/),我只能在默认页面上渲染Blazor组件(即{ {3}})。 Blazor组件在默认页面中完全可以正常工作,但是当我尝试使用https://localhost:5433或任何其他视图打开视图时,Blazor组件无法渲染。
我在这里想念东西吗?
答案 0 :(得分:1)
我知道了!要回答一些问题和可复制的示例:
创建一个空的MVC核心应用程序,并遵循Chrissianity的有关如何将Blazor实施到现有MVC https://chrissainty.com/using-blazor-components-in-an-existing-mvc-application/的教程
我没有注意到我在使用
@(await Html.RenderComponentAsync<CoursesList>(**RenderMode.Server**,
new { Courses = Model }))
而不是
@(await Html.RenderComponentAsync<CoursesList(**RenderMode.ServerPrerendered**,
new { Courses = Model }))
当我更改渲染模式时,页面现在可以工作了。