问题详情
266 | 清风大侠
框架支持Blazor的Auto和Server两种模式,切换极其方便
  • App.razor文件中切换模式
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
    <Routes @rendermode="InteractiveMode" IPAddress="@ipAddress" IsMobile="isMobile" />
</body>
</html>

@code {
    // Server模式(模板默认),若要用Auto模式,注释此行
    private InteractiveServerRenderMode InteractiveMode => new(false);
    // Auto模式,若要用Server模式,注释此行
    private InteractiveAutoRenderMode InteractiveMode => new(false);
}
回复列表

暂无数据