- 在
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);
}