ToB企服应用市场:ToB评测及商务社交产业平台

标题: SignalR 2 与mvc 5实现实时聊天功能 [打印本页]

作者: 冬雨财经    时间: 2022-8-11 19:08
标题: SignalR 2 与mvc 5实现实时聊天功能
效果图先附上:

 

 首先 这是我是参考  教程:使用 SignalR 2 和 MVC 5 实时聊天 | Microsoft Docs
先附上教程:

 
 
 
 
控制器
 
 如果实现了以上  效果如图

 
 如果要实现侧边栏展示 那么需要把内容替换一下
  1. @{
  2.     ViewBag.Title = "Chat";
  3.     Layout = "~/Views/Shared/_LayoutChat.cshtml";
  4. }
  5. @using 奈班级学生管理系统.Models;
  6. <link href="~/Content/bootstrap.css" rel="stylesheet" />
  7. <p id="UserName" style="display:none;">@ViewBag.name</p>
  8. <p id="time" style="display:none;">@ViewBag.time</p>
  9. <body>
  10.     <canvas class="tsparticles-canvas-el" width="2133" height="1249" style="width: 100%; height: 100%; position: fixed; z-index: -1; top: 0px; left: 0px; background-color: rgb(255, 255, 255); pointer-events: initial;"></canvas>
  11.   
  12. </body>
  13. <button class="ljjr" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight" aria-controls="offcanvasRight">立即加入</button>
  14.    
  15.         <h3 class="container">在线聊天栏</h3>
  16.         <hr style="color:#ccc" />
  17.         <button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
  18.    
  19.    
  20.         
  21.             <ul id="discussion">
  22.             </ul>
  23.             
  24.                 <input placeholder="快和在线小伙伴一起交流吧~" type="text" id="message" style="width: 230px; border: 1px solid #000000;height:32px;border-radius:5px;" />
  25.                 <input type="button" id="sendmessage" value="发送" class="btn" style="background-color: #000000; color: white; width: 22%; height: 32px; border-radius: 4px; " />
  26.                 <input type="hidden" id="displayname" />
  27.             
  28.         
  29.    
  30. @section scripts {
  31.    
  32.     <link href="https://cdn.staticfile.org/twitter-bootstrap/5.1.1/css/bootstrap.min.css" rel="stylesheet">
  33.    
  34.    
  35.    
  36.    
  37.    
  38.    
  39.     @* *@
  40.    
  41.    
  42.    
  43.    
  44. }
复制代码
View Code注意 有一些路径需要改成自己的

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4