当客户端通过SignalR集线器收到消息时,我想做点什么。
我已经整理了一个基本的聊天应用,但希望人们能够“喜欢”聊天评论。我想这样做的方法是在客户端页面上找到聊天消息并使用javascript更新它。在此期间,为了“证明这个概念”,我只想在客户机上发出一个警告弹出窗口,说另一个用户喜欢这个评论。
麻烦的是,我不知道该把它放在哪里。 (说实话,我很难找到SignalR文档。)无法理解这里的内容。
我的ChatHub类如下:
public class ChatHub : Hub
{
public void Send(string name, string message)
{
// Call the broadcastMessage method to update clients.
Clients.All.broadcastMessage(name, message);
}
}
我的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.
var divContent = $('#discussion').html();
$('#discussion').html('<div class="container">' +
'<div class="content">' +
'<p class="username">' + encodedName + '</p>' +
'<p class="message">' + encodedMsg + '</p>' +
'</div>' +
'<div class="slideout">' +
'<div class="clickme" onclick="slideMenu(this)"></div>' +
'<div class="slidebutton"><img id="imgid" onclick="likeButtonClick(this)" src="Images/like.png" /></div>' +
'<div class="slidebutton"><img onclick="commentButtonClick(this)" src="Images/comment.png" /></div>' +
'<div class="slidebutton" style="margin-right:0px"><img onclick="redcardButtonClick(this)" src="Images/redcard.png" /></div>' +
'</div>' +
'</div>' + divContent);
};
// 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($('#lblUser').html(), $('#message').val());
// Clear text box and reset focus for next comment.
$('#message').val('').focus();
});
});
答案 0 :(得分:0)
在ChatHub中需要一个方法:
public void sayHello()
{
Clients.All.sayHello();
}
然后在JQuery中:
$(function () {
...
chat.client.sayHello = function () {
alert("Hello");
};
...
$.connection.hub.start().done(function () {
$('#sayHello').click(function () {
// Call the SayHello method on the hub.
chat.server.sayHello();
});
...
}
});