我一直关注SignalR在线聊天教程(http://www.asp.net/signalr/overview/signalr-20/getting-started-with-signalr-20/tutorial-getting-started-with-signalr-20),效果很好!尽管如此,为了尝试自己学习一点,我一直在尝试配置它以满足我的需要。
我尝试删除用户名提示,并自动获取登录用户的用户名。只有登录的用户才能访问聊天页面,所以。
正如您所看到的,我试图通过ChatHub.cs获取名称,但我无法弄清楚如何使用SignalR JavaScript完成所有工作。
提前谢谢。
Chat.cshtml:
@{
Page.Title = "Chat";
}
<div class="content">
<h2>@Page.Title</h2>
<style type="text/css">
.container {
background-color: #99CCFF;
border: thick solid #808080;
padding: 20px;
margin: 20px;
}
</style>
<div class="container">
<input type="text" id="message" />
<input type="button" id="sendmessage" value="Send" />
<input type="hidden" id="displayname" />
<ul id="discussion"></ul>
</div>
<script src="~/assets/js/jquery-2.1.1.min.js"></script>
<script src="~/Scripts/jquery.signalR-2.1.2.min.js"></script>
<script src="~/signalr/hubs"></script>
<script type="text/javascript">
$(function () {
// Declare a proxy to reference the hub.
var chat = $.connection.chatHub;
// Create a function that the hub can call to broadcast messages.
chat.client.broadcastMessage = function (name, message) {
// Html encode display name and message.
var encodedName = $('<div />').text(name).html();
var encodedMsg = $('<div />').text(message).html();
// Add the message to the page.
$('#discussion').append('<li><strong>' + encodedName
+ '</strong>: ' + encodedMsg + '</li>');
};
// Get the user name and store it to prepend to messages.
$('#displayname').val(prompt('Enter your name:', ''));
// Set initial focus to message input box.
$('#message').focus();
// Start the connection.
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
// Call the Send method on the hub.
chat.server.send($('#displayname').val(), $('#message').val());
// Clear text box and reset focus for next comment.
$('#message').val('').focus();
});
});
});
</script>
</div>
ChatHub.cs
using System;
using System.Web;
using Microsoft.AspNet.SignalR;
using WebMatrix.Data;
using WebMatrix.WebData;
namespace SignalRChat
{
public class ChatHub : Hub
{
public void Send(string message)
{
// Call the broadcastMessage method to update clients.
var db = Database.Open("GamersInvest");
string name = db.QueryValue("SELECT UserName FROM Users WHERE UserId = @0", WebSecurity.CurrentUserId);
Clients.All.broadcastMessage(name, message);
}
}
}
Startup.cs
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(SignalRChat.Startup))]
namespace SignalRChat
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
// Any connection or hub wire up and configuration should go here
app.MapSignalR();
}
}
}
答案 0 :(得分:0)
如果您使用的是ASP.NET身份,则可以在视图中使用User.Identity.GetUserName()
来获取当前登录用户的名称。如果您使用的是表单身份验证,请使用User.Identity.Name
作为用户名。您可以使用Razor将这些内容添加到JavaScript中:
例如,替换
// Get the user name and store it to prepend to messages.
$('#displayname').val(prompt('Enter your name:', ''));
类似
// Get the user name and store it to prepend to messages.
$('#displayname').val("@HttpContext.Current.User.Identity.Name");
请务必为您正在使用的身份系统输入正确的代码。