我从预览版 7 迁移到发布 Core 3.0 我有一个只有类组件的库我有这个 LocationViewModel:ComponentBase 它就像一个魅力但不再是:(
我的视图模型:
[Layout(typeof(LayoutComponent))]
[Route("/location")]
public class LocationViewModel : ViewModelBase<Location>
{}
我的布局:
public class LayoutComponent : LayoutComponentBase
{
...
Builder.AddContent(1,Body);
...
}
我的 _Host.cshtml
<app>@(await Html.RenderComponentAsync<LayoutComponent>(RenderMode.ServerPrerendered))
</app>
我的应用程序.razor
@using SystemCore.LayoutComponents;
@using Microsoft.AspNetCore.Components.Web;
@using FacilityManagementSystem.ViewModels;
<Router
AppAssembly="@typeof(Startup).Assembly" <-- i tried 'App' before , still no use
AdditionalAssemblies="new List<System.Reflection.Assembly>() { typeof(LocationViewModel).Assembly }"
>
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(LayoutComponent)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(LayoutComponent)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
发生的情况是,当我转到位置“~base/location”时,我的 LocationViewModel 没有呈现
我试过这个来检查我的视图模型是否有问题..
_Host.cshtml
<app>@(await Html.RenderComponentAsync<LocationViewModel>(RenderMode.ServerPrerendered))
</app>
它奏效了!
我的假设是某些东西在不直接渲染时没有捕捉到我的视图模型请帮助,因为这对我来说非常重要,抱歉打扰
编辑(1):BTW浏览器控制台中没有出现错误