- 需求背景 产品觉得在后台处理数据时给前端加个进度条
- 项目框架 .ENT framework4.5 MVC 5.0
- Nuget引入 Microsoft.Owin 系列 2.0.2
- Nuget引入 Microsoft.AspNet.SignalR 系列 2.0.3
- 服务器代码 选择已安装 > Visual C# > Web > SignalR ,然后选择SignalR Hub 类 (v2)
-
using System; using System.Collections.Generic; using System.Linq; using System.Web; using XXX.WMS.Core.Log; using Microsoft.AspNet.SignalR; namespace XXX.WebUI { public class SaleBackHub : Hub { private void Send(string connectionId, string percent) { // Call the addNewMessageToPage method to update clients. try { Clients.Client(connectionId).updateProgressbar(percent); } catch (Exception ex) { LoggerManager.GetInstance().Fatal(ex); } } public string GetConnectionId() { return this.Context.ConnectionId; } } }
- 服务端调用前端action更新进度条
1 //使用外部方式调用Hub类方法 2 var saleBackHub = Microsoft.AspNet.SignalR.GlobalHost.ConnectionManager.GetHubContext<SaleBackHub>(); 3 var percent = 0; 4 if (!string.IsNullOrWhiteSpace(requestDto.ProgressbarKey)) 5 { 6 percent = (int)((decimal)++progressCount / (decimal)saleBackModelListCount * 100); 7 try 8 { 9 //调用前端action 更新进度条 10 saleBackHub.Clients.Client(requestDto.ProgressbarKey).updateProgressbar(percent.ToString()); 11 } 12 catch (Exception ex) 13 { 14 throw; 15 } 16 }
-
- 服务添加Starup.cs
-
using System; using System.Threading.Tasks; using Microsoft.Owin; using Owin; [assembly: OwinStartup(typeof(Frxs.WMS.Management.WebUI.Startup))] namespace xxx.WMS.Management.WebUI { public class Startup { public void Configuration(IAppBuilder app) { // 有关如何配置应用程序的详细信息,请访问 https://go.microsoft.com/fwlink/?LinkID=316888 app.MapSignalR(); } } }
-
-
前端代码
-
对应页面引入signalR.js
<script src="@Url.Content("~/Scripts/signalR/jquery.signalR-2.0.3.min.js“)" type="text/javascript"></script> <script src="~/signalr/hubs"></script>
-
初始化signalR 连接 定义后端推送action 渲染进度条 本次用的是jeasyui 进度条弹窗
var chat; var chatConnectionId; function initchatHub() { // Reference the auto-generated proxy for the hub. chat = $.connection.saleBackHub; $.connection.hub.logging = true; // Get the user name and store it to prepend to messages. // Set initial focus to message input box. // Start the connection. $.connection.hub.start().done(function () { chat.server.getConnectionId().done(function (connectionId) { chatConnectionId = connectionId; }); }); // Create a function that the hub can call back to display messages. chat.client.updateProgressbar = function (percent) { // Add the message to the page. if (parseInt(percent) <= 100) { $.messager.progress(‘bar‘).progressbar(‘setValue‘, percent); } //var value = $.messager.progress(‘bar‘).progressbar(‘getValue‘); }; } function showProgressbar() { $.messager.progress({ title: ‘测试进度条‘, interval: 0 //每次进度更新之间以毫秒为单位的时间长度。默认值是 300。 }); }
-
-
实际效果图
-
参考地址 https://docs.microsoft.com/zh-cn/aspnet/signalr/overview/
相关文章
- 09-17使用 SignalR 实现推送功能
- 09-17ASP.NET(C#) 使用 SqlBulkCopy 实现批量插入SQL(快捷简单)
- 09-17c# – 使用Web API作为SignalR服务器并从Windows服务中使用它
- 09-17C#使用SqlDataAdapter 实现数据的批量插入和更新
- 09-17Linux调试器-gdb使用 && Linux彩色进度条实现
- 09-17字符串相似度计算的方法,使用SQL以及C#实现,本文非原创摘自网络(.NET SQL技术交流群入群206656202需注明博客园)
- 09-17C#开发微信门户及应用(42)--使用Autofac实现微信接口处理的控制反转处理
- 09-17SignalR开发的微信小程序使用websocket实现聊天功能
- 09-17vue使用NProgress实现进度条
- 09-17使用NProgress 实现进度条功能