网站断开连接后,我想覆盖一下。
(“重新连接失败。如果您无法重新连接,请尝试重新加载页面。[重试]”)
这可能吗?
答案 0 :(得分:0)
我碰到一篇文章,解释了如何将blazor服务器端与现有的mvc项目集成在一起,并找到了有关如何覆盖重新连接消息的解释。 blazor似乎创建了以下内容:
<div id="components-reconnect-modal" class="reconnect-block">
<div class="reconnect-wait">
Connection lost -- please wait, attempting to reconnect
</div>
<div class="reconnect-button">
Unable to reconnect. Click to attempt to reconnect:
<input type="button" value="Reconnect" onclick="Reconnect()" />
</div>
</div>
<script>
function Reconnect() {
window.Blazor.reconnect();
}
</script>
我确定可以使用任何您想要的内容覆盖它。希望这会有所帮助。
来源:Article