SignalR簡單示例教程入門版

来源:http://www.cnblogs.com/hfdel/archive/2016/09/27/5912693.html
-Advertisement-
Play Games

上周五最後一天在公司上班,無聊之餘就想做點什麼.介於之前有人讓我做個簡易版的線上聊天的,於是乎就打算花一天時間來弄下關於SignalR的簡單教程製作一個線上的聊天的。 1:前端用了國產的一個MVVM框架 avalon 的早期版本和 layer 插件(具體怎麼用這裡就不介紹了,需要瞭解的自行百度) 2 ...


上周五最後一天在公司上班,無聊之餘就想做點什麼.介於之前有人讓我做個簡易版的線上聊天的,於是乎就打算花一天時間來弄下關於SignalR的簡單教程製作一個線上的聊天的。

1:前端用了國產的一個MVVM框架 avalon 的早期版本和 layer  插件(具體怎麼用這裡就不介紹了,需要瞭解的自行百度)

2:MVC項目裡面新增一個Hub 的繼承類 ChatHub , 標簽HubName 類似於一個重命名的效果

3:OnlineCache 類的作用是定義了一個KEY和VALUE主要用於記錄用戶名稱和Signalr自動生成的KEY關係

4 : Startup.cs   里記得註冊下 app.MapSignalR();

 

[HubName("customhub")]
    public class ChatHub : Hub
    {

       /// <summary> /// 發送信息/// </summary> /// <param name=""></param> /// <returns></returns>
        public void Send(string name, string message)
        {
            Clients.All.addNewMessageToPage(name, message);
        }


        /// <summary> /// 頁面打開創建Signalr對象時由客戶端調用,然後服務端將已經存在的用戶列表,推送回客戶端用於刷新線上用戶列表/// </summary> /// <param name=""></param> /// <returns></returns>
        public void Push(string name)
        {
            if (!OnlineCache.dicSignalrs.ContainsKey(base.Context.ConnectionId))
                OnlineCache.dicSignalrs.Add(base.Context.ConnectionId, name);
            else
            {
                OnlineCache.dicSignalrs.Remove(base.Context.ConnectionId);
                OnlineCache.dicSignalrs.Add(base.Context.ConnectionId, name);
            }
///這裡是將線上人員列表推送回客戶端 Clients.All.subscribeUsers(name,OnlineCache.OnlineToList()); }
// // 摘要: // Called when the connection connects to this hub instance. // // 返回結果: // A System.Threading.Tasks.Task public override Task OnConnected() {       return base.OnConnected(); } // // 摘要: // Called when a connection disconnects from this hub gracefully or due to a timeout. // // 參數: // stopCalled: // true, if stop was called on the client closing the connection gracefully; false, // if the connection has been lost for longer than the Microsoft.AspNet.SignalR.Configuration.IConfigurationManager.DisconnectTimeout. // Timeouts can be caused by clients reconnecting to another SignalR server in scaleout. // // 返回結果: // A System.Threading.Tasks.Task /// <summary> /// 離線觸發 /// </summary> /// <param name="stopCalled"></param> /// <returns></returns> public override Task OnDisconnected(bool stopCalled) { if (OnlineCache.dicSignalrs.ContainsKey(base.Context.ConnectionId)) { var name = OnlineCache.dicSignalrs[base.Context.ConnectionId]; OnlineCache.dicSignalrs.Remove(base.Context.ConnectionId);
///離線後將線上人員移除的通知 推送到客戶端 Clients.All.removeUser(name, OnlineCache.OnlineToList()); }
return base.OnDisconnected(stopCalled); } // // 摘要: // Called when the connection reconnects to this hub instance. // // 返回結果: // A System.Threading.Tasks.Task public override Task OnReconnected() { return base.OnReconnected(); } } public class OnlineCache { public OnlineCache() { } public string Key { set; get; } public string Value { set; get; } static OnlineCache() { if (dicSignalrs == null) dicSignalrs = new Dictionary<string, string>(); } public static Dictionary<string, string> dicSignalrs; /// <summary> /// 提取list /// </summary> /// <returns></returns> public static List<OnlineCache> OnlineToList() => dicSignalrs.Select(o => new OnlineCache() { Key = o.Key, Value = o.Value }).ToList(); }


前端JS腳本

@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    <link href="~/Content/bootstrap.min.css" rel="stylesheet" />
    <link href="~/Content/Site.css" rel="stylesheet" />
    <link href="~/Scripts/layer-v2.4/layer/skin/layer.css" rel="stylesheet" />

    <script src="~/Scripts/jquery-1.10.2.min.js"></script>
    <script src="~/Scripts/Avalon/json2.js"></script>
    <script src="~/Scripts/jquery.signalR-2.2.1.min.js"></script>


    <script src="~/Scripts/layer-v2.4/layer/layer.js"></script>
    <script src="~/Scripts/Avalon/avalon.js"></script>

    <script src="/signalr/hubs"></script>
    <script>
        var onlines = [];
        var chat;
        $(function () {
            vm.init();
        });


        var vm =
            avalon.define({
                $id: "online",
                sendname: "所有線上用戶",
                customname: "",
                onlines: [],
                logs: [],
                authorize: false,
                sendText: "",
                firstload: false,
                init: function () {
                    layer.prompt({
                        title: '輸入聊天昵稱,並確認',
                        formType: 0
                    }, function (name) {
                        layer.msg('聊天室內容載入中', {
                            time: 1000
                        });
                        vm.customname = name;
                        vm.authorize = true;
                        vm.callbackmessage();

                    });
                },
                connection: function () {
                    $.connection.hub.start().done(function () {
                        ///首次頁面載入註冊完畢後直接把用戶名發到後臺建立用戶列表
                        if (!vm.firstload) {
                            vm.firstload = true;
                            chat.server.push(vm.customname);
                        }
                        $('#btnSend').click(function () {
                            if (!vm.authorize) {
                                layer.msg("沒有通過授權不能進行聊天");
                                return;
                            }
//**這裡主要是用於發送信息 chat.server.send(vm.customname, $(
'#message').val()); $('#message').val('').focus(); }); }); vm.getOnlineUser(); }, callbackmessage: function () { chat = $.connection.customhub;
//**有用戶登陸 這裡會接收到服務端推送過來的消息name是上線用戶名稱 users是線上用戶列表 直接綁定mvvm的onlines刷新列表 chat.client.subscribeUsers
= function (name,users) { layer.tips(name + " 上線", '#btnSend', { tips: [1, '#3595CC'] }); vm.onlines = users; }; chat.client.removeUser = function (name, users) { layer.tips(name + " 離線", '#btnSend', { tips: [1, 'red'] }); vm.onlines = users; }; chat.client.addNewMessageToPage = function (name, message) { vm.logs.push({ name: name, message: message }); }; vm.connection(); } }); </script> </head> <body ms-controller="online"> <div class="col-sm-2 col-md-2 col-lg-2"> <label>線上用戶列表</label> <br /> <div class="list-group"> <a href="#" ms-repeat="onlines" class="list-group-item"> {{el.Value}} </a> </div> </div> <div class="col-sm-5 col-md-5 col-lg-5"> <textarea id="message" placeholder="輸入發送內容" class="form-control" style="width:100%;" ms-duplex="sendText"></textarea> <br /> <br /> <div class="row col-sm-12 col-md-12 col-lg-12"> <div class="table-scrollable" style="max-height: 400px; overflow:auto; "> <table class="table table-bordered table-hover text-center"> <thead> <tr> <th class="col-sm-4">發送人</th> <th class="col-sm-8">內容</th> </tr> <tr href="#" ms-repeat="logs"> <th class="col-sm-4">{{el.name}}</th> <th class="col-sm-8">{{el.message}}</th> </tr> </thead> </table> </div> </div> </div> <div class="col-sm-3 col-md-3 col-lg-3"> <br /> <div class="row"> <input class="btn btn-primary col-sm-5 col-md-5 col-lg-5" value="發送消息" id="btnSend" type="button" /> </div> <br /> <br /> <div class="row"> <label>賬號昵稱:</label><label>{{customname}}</label> </div> <br /> <br /> <div class="row"> <label>發送對象:</label><label>{{sendname}}</label> </div> </div> <div class="row"> <div class="col-sm-offset-11 col-sm-1 pull-right" style="margin-bottom:0px;" id="tip"> </div> </div> </body> </html>

 



 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 只是想簡單說下特性 - Attribute 【博主】反骨仔 【原文地址】http://www.cnblogs.com/liqingwen/p/5911289.html 目錄 特性簡介 使用特性 特性的參數 特性的目標 特性的常見用途 創建自定義的特性 使用反射訪問特性 特性簡介 使用特性 特性的參數 ...
  • 前段時間在改Bug打開一個project時,發生了一件奇怪的事,好好的一直不能載入solution底下的這個project,錯誤如下圖所示:大致的意思就是這個project的web server被配置成了IIS Express,但是當前URL被配置成local IIS web server。要想打開 ...
  • 背水一戰 Windows 10 之 控制項(彈出類): MessageDialog, ContentDialog ...
  • 本文首發我的微信公眾號"dotnet跨平臺", 內容得到大家熱烈的歡迎,全文重新發佈在博客,歡迎轉載,請註明出處. .NET 主要的開發語言是 C# , .NET 平臺泛指遵循ECMA 334 C#和 ECMA 335 CLI 標準的開發平臺 ,包括微軟自行開發的.NET 平臺和 開源實現的Mono... ...
  • 1. 靜態using(static using) 靜態using聲明允許不使用類名直接調用靜態方法。 The static using declaration allows invoking static methods without the class name. In C 5 In C 6 2 ...
  • asp.net mvc 自定義pager封裝與優化 Intro 之前做了一個通用的分頁組件,但是有些不足,從翻頁事件和分頁樣式都融合在後臺代碼中,到翻頁事件可以自定義,再到翻頁和樣式都和代碼分離, 自定義分頁 pager 越來越容易擴展了。 HtmlHelper Pager擴展 Pager V1.0 ...
  • ASP.NET 頁面請求超時時間(頁面後臺程式執行時間)預設值為 110 秒(在 .NET Framework 1.0 版和 1.1 版中,預設值為 90 秒) 即: Server.ScriptTimeout = 110(HttpServerUtility.ScriptTimeout = 110) ...
  • 使用EF自己做的小功能需要遇到inner join和group by組合使用及匿名類型的處理,搜了很多,基本不能滿足自己的需要,所以總結了也實現了就自己寫出來,已備查看及伙伴查詢參考(一般的語句查詢就不說了,網路搜索很多) 語句查詢的背景(要不直接看語句估計也夠嗆):主要想實現類似QQ相冊的功能展示 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...