翼度科技»论坛 编程开发 .net 查看内容

Dotnet9网站回归Blazor重构,访问速度飞快,交互也更便利了!

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
大家好,我是沙漠尽头的狼。
Dotnet9网站回归Blazor重构,访问速度确实飞快,同时用上Blazor的交互能力,站长也同步添加了几个在线工具,这篇文章分享下Blazor的重构过程,希望对大家网站开发时做技术选型有个参考。

1. 先聊聊Razor Pages

上个版本网站前台使用的Razor Pages开发,当时选择这个技术栈主要是为了搜索引擎的SEO优化考虑。
关于MVC和Razor Pages哪个更优, 我们这里只说说Razor Pages相对的优势。
首先,Razor Pages相对于MVC来说,更加简单和直观。由于Razor Pages将视图和处理逻辑封装在同一个页面中,开发人员可以更容易地理解和维护代码。对于小型项目或者只有少量页面的应用来说,Razor Pages可以提供更快的开发速度和更简洁的代码结构,这是站长当时从MVC重构成Razor Pages的主要选择理由。
其次,Razor Pages在SEO(搜索引擎优化)方面具有一定的优势。由于Razor Pages将视图和处理逻辑封装在同一个页面中,搜索引擎可以更容易地理解和索引页面的内容。这对于需要更好的搜索引擎排名的应用来说,是一个重要的考虑因素。
说Razor Pages优势,那为啥现在又换Blazor了?因为Blazor可能又是更好的选择了,我们接着说。
2. 关键聊聊Blazor

Blazor是一个新兴的Web开发框架,它可以让开发人员使用C#语言来编写Web应用程序,而不必使用JavaScript,当然只能说尽量少用,完全不用也不太现实。相比于Razor Pages和MVC,Blazor提供了一种全新的开发模式,具有许多独特的优势和适用场景。
首先,Blazor提供了真正的前端开发体验。传统的Web开发中,前端开发人员需要使用JavaScript来处理页面的交互和动态效果,而后端开发人员则负责处理业务逻辑和数据操作。这种分离的开发模式可能导致开发人员之间的沟通和协作问题。而Blazor使用C#语言来编写前端代码,使得前端和后端开发人员可以使用相同的语言和工具,更加高效地协作开发。
其次,Blazor提供了更好的性能和用户体验,Blazor提供了客户端和服务端两种模式(Blazor混合模式有机会我们再谈):

  • 客户端模式:Blazor使用WebAssembly技术,在浏览器中直接运行编译后的二进制代码,可以实现接近原生应用的性能。
  • 服务端模式:与传统的基于HTTP请求的页面刷新相比,Blazor使用SignalR连接来实现实时数据更新和双向绑定,可以提供更快速和流畅的用户体验。
另外,Blazor还具有更好的可重用性和组件化开发。Blazor提供了丰富的组件库和工具,可以帮助开发人员更快地构建出漂亮且功能强大的界面。开发人员可以将常用的UI组件封装成可重用的组件,提高开发效率和代码质量。
此外,Blazor还支持现代化的前端开发技术和工具。开发人员可以使用Blazor与现有的JavaScript库和框架进行集成,如React、Vue.js等。
总之,Blazor对于Razor Pages和MVC来说是一个更好的选择,特别是对于需要更好的前端开发体验、更好的性能和用户体验以及更好的可重用性和组件化开发的项目来说。然而,选择使用哪种开发模式还是要根据项目的具体需求和开发团队的偏好来决定。无论选择哪种模式,重要的是根据项目的实际情况做出合理的选择,并且在开发过程中遵循良好的设计原则和最佳实践。
3. 再聊聊为啥又用Blazor了?

站长在去年对网站前台使用Blazor Server开发过一个版本,当时因为断线重连体验的问题,站长选择用Razor Pages重构了。
这次站长回归Blazor的转折点在6月13号 - .NET 8 Preview 5发布,VS2022预览版也跟着出了Blazor Web App项目模板,各个技术群也讨论疯了,站长在Razor Pages中添加了Razor 组件尝试,微软确实牛逼,旨在使 Blazor 组件能够满足客户端和服务器端的所有 Web UI 需求。。
但目前该模式Razor组件无法交互,页面还出现了重连置灰UI,索性直接用Blazor Server重构,经过几天的奋战,网站前台已经用Blazor Server完全替换Razor Pages,烦人的重连也解决了,现在访问网站飞快,不知道是不是错觉,个人感觉很好。(重连问题参考微软文档【ASP.NET Core BlazorSignalR 指南】和Token佬写的文章 【如何取消Blazor Server烦人的重新连接?】。)
Razor Pages(MVC)与Blazor都使用的Razor语法,所以理论上切换是无缝的,核心代码改动不大,项目代码文件结构对比看下面截图,不再赘述,有兴趣看源码吧,两个版本代码都在。
Razor Pages版工程结构Blazor Server版工程结构
4. Blazor的交互便利:带来几个在线工具

对于页面的事件处理,使用Blazor就方便了,下面是昨晚加的4个小工具:

有兴趣的朋友可以点击体验:https://dotnet9.com/tools, 我们直接贴上4个小工具代码,你可能会喜欢上Blazor的代码风格。
4.1. JSON格式化

访问地址:https://dotnet9.com/tools/jsonformatter

页面代码:
  1. @page "/tools/jsonformatter"
  2. @using System.Text.Json
  3. <PageTitle>@_title</PageTitle>
  4. <MApp>
  5.    <h2 >@_title</h2>
  6.    
  7.        <MTextarea BackgroundColor="grey lighten-2" Solo
  8.                   Color="orange orange-darken-4" TValue="string" @bind-Value="_inputJson"
  9.                   Label="输入Json" Rows="8"  RowHeight="15" AutoGrow/>
  10.    
  11.    
  12.        <MButton Color="success"  OnClick="() => FormatJson(true)">格式化</MButton>
  13.        <MButton Color="lime" OnClick="() => FormatJson(false)">压缩</MButton>
  14.    
  15.    
  16.        <MTextarea BackgroundColor="amber lighten-4" Solo
  17.                   Color="orange orange-darken-4" TValue="string" @bind-Value="_formattedJson"
  18.                   Label="格式化或压缩后Json" Rows="8"  RowHeight="15" AutoGrow/>
  19.    
  20. </MApp>
  21. @code
  22. {
  23.        private const string? _title = "工具箱-JSON格式化";
  24.    private string? _inputJson;
  25.    private string? _formattedJson;
  26.    private void FormatJson(bool writeIndented)
  27.    {
  28.        try
  29.        {
  30.            var jsonObject = JsonDocument.Parse(_inputJson).RootElement;
  31.            _formattedJson = JsonSerializer.Serialize(jsonObject, new JsonSerializerOptions { WriteIndented = writeIndented });
  32.        }
  33.        catch (JsonException)
  34.        {
  35.            _formattedJson = "无效的JSON格式";
  36.        }
  37.    }
  38. }
复制代码
4.2. 在线字符串编码工具

访问地址:https://dotnet9.com/tools/string-encoder

页面代码:
  1. @page "/tools/string-encoder"
  2. <PageTitle>@Title</PageTitle>
  3. <MApp>
  4.    <h2 >@Title</h2>
  5.    <p>
  6.        <MTextarea BackgroundColor="grey lighten-2"
  7.                   Color="cyan" Solo TValue="string" @bind-Value="_inputString"
  8.                   Label="输入字符串"/>
  9.    </p>
  10.    <p>
  11.        <MTextarea BackgroundColor="amber lighten-4" Solo
  12.                   Color="orange orange-darken-4" TValue="string" @bind-Value="_encodedOrDecodeString"
  13.                   Label="编/解码结果"/>
  14.    </p>
  15.    <p>
  16.        <MButton OnClick="@Encode">编码</MButton>
  17.        <MButton OnClick="@Decode">解码</MButton>
  18.        <MButton OnClick="@Clear">清空</MButton>
  19.    </p>
  20. </MApp>
  21. @code {
  22.    private const string Title = "工具箱-在线字符串编码工具";
  23.    private string? _inputString;
  24.    private string? _encodedOrDecodeString;
  25.    private void Encode()
  26.    {
  27.        _encodedOrDecodeString = System.Web.HttpUtility.UrlEncode(_inputString);
  28.    }
  29.    private void Decode()
  30.    {
  31.        _encodedOrDecodeString = System.Web.HttpUtility.UrlDecode(_inputString);
  32.    }
  33.    private void Clear()
  34.    {
  35.        _inputString = string.Empty;
  36.        _encodedOrDecodeString = string.Empty;
  37.    }
  38. }
复制代码
4.3. 倒计时

访问地址:https://dotnet9.com/tools/countdown

页面代码:
  1. @page "/tools/countdown"
  2. <PageTitle>@Title</PageTitle>
  3. <MApp>
  4.    <h2 >@Title</h2>
  5.    <p>
  6.        <MTextField Label="持续时间(秒)" Type="number" TValue="int" @bind-Value="@_duration"/>
  7.    </p>
  8.    <p>
  9.        <MButton Color="success"  OnClick="@StartCountdown" Disabled="@_isCountingDown">开始</MButton>
  10.        <MButton Color="pink"  OnClick="@PauseCountdown" Disabled="!_isCountingDown">暂停</MButton>
  11.        <MButton Color="deep-orange"  OnClick="@ResetCountdown" Disabled="!_isCountingDown">重置</MButton>
  12.        剩余时间(秒):@_remainingTime
  13.    </p>
  14.    
  15.        <MProgressCircular Value="@_remainingTimePercent" Size="100" Width="15" Rotate="360" Color="teal">@_remainingTime</MProgressCircular>
  16.    
  17. </MApp>
  18. @code {
  19.    private const string Title = "工具箱-倒计时";
  20.    private int _duration = 20;
  21.    private int _remainingTime;
  22.    private int _remainingTimePercent;
  23.    private bool _isCountingDown;
  24.    private bool _isPause;
  25.    private CancellationTokenSource? _countdownTokenSource;
  26.    private async Task StartCountdown()
  27.    {
  28.        if (_duration < 0)
  29.        {
  30.            _duration = 10;
  31.        }
  32.        if (_isCountingDown)
  33.        {
  34.            return;
  35.        }
  36.        _isCountingDown = true;
  37.        if (!_isPause || _remainingTime <= 0)
  38.        {
  39.            _remainingTime = _duration;
  40.            ChangeRemainingTimePercent();
  41.        }
  42.        _countdownTokenSource = new CancellationTokenSource();
  43.        await Countdown(_countdownTokenSource.Token);
  44.    }
  45.    private void PauseCountdown()
  46.    {
  47.        if (!_isCountingDown)
  48.        {
  49.            return;
  50.        }
  51.        _isCountingDown = false;
  52.        _isPause = true;
  53.        _countdownTokenSource?.Cancel();
  54.    }
  55.    private async void ResetCountdown()
  56.    {
  57.        _isPause = false;
  58.        if (_isCountingDown && _countdownTokenSource != null)
  59.        {
  60.            await _countdownTokenSource.CancelAsync();
  61.        }
  62.        _remainingTime = _duration;
  63.        _isCountingDown = false;
  64.        ChangeRemainingTimePercent();
  65.    }
  66.    private async Task Countdown(CancellationToken cancellationToken)
  67.    {
  68.        while (_remainingTime > 0)
  69.        {
  70.            await Task.Delay(1000, cancellationToken);
  71.            _remainingTime--;
  72.            ChangeRemainingTimePercent();
  73.            if (cancellationToken.IsCancellationRequested)
  74.            {
  75.                return;
  76.            }
  77.        }
  78.        _isCountingDown = false;
  79.    }
  80.    private async void ChangeRemainingTimePercent()
  81.    {
  82.        _remainingTimePercent = (int)(_remainingTime * 100.0 / _duration);
  83.        await InvokeAsync(StateHasChanged);
  84.    }
  85. }
复制代码
4.4. 时间戳转换

访问地址:https://dotnet9.com/tools/timestamp
站长原来写过一篇,可以看这里:使用Blazor做个简单的时间戳在线转换工具
5. 总结

网站可能存在Bug,不,一定存在Bug,站长会一直重构迭代下去。
很高兴将网站前台重构后分享这个喜悦给大家,祝大家端午安康。

来源:https://www.cnblogs.com/Dotnet9-com/archive/2023/06/23/17499012.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具