Sul*_*tan 7 c# asp.net-mvc signalr signalr-hub
代码的安排和它令人满意的地方存在混淆,所以我希望找到以下解释:
当我有一台服务器" https:// localhost:48009 / "时,该应用程序配备了Signal-R的所有要求,并且还存在Hub.在文件夹中Hubs有一个Hub类ChatHub.cs
using System;
using System.Web;
using Microsoft.AspNet.SignalR;
namespace SignalRChat
{
public class ChatHub : Hub
{
public void Send(string name, string message)
{
// Call the addNewMessageToPage method to update clients.
Clients.All.addNewMessageToPage(name, message);
}
}
}
Run Code Online (Sandbox Code Playgroud)
并在 Chat.cshtml
@{
ViewBag.Title = "Chat";
}
<h2>Chat</h2>
<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>
@section scripts {
<!--Script references. -->
<!--The jQuery library is required and is referenced by default in _Layout.cshtml. -->
<!--Reference the SignalR library. -->
<script src="~/Scripts/jquery.signalR-2.1.0.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="~/signalr/hubs"></script>
<!--SignalR script to update the chat page and send messages.-->
<script>
$(function () {
// Reference the auto-generated proxy for the hub.
var chat = $.connection.chatHub;
// Create a function that the hub can call back to display messages.
chat.client.addNewMessageToPage = function (name, message) {
// Add the message to the page.
$('#discussion').append('<li><strong>' + htmlEncode(name)
+ '</strong>: ' + htmlEncode(message) + '</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();
});
});
});
// This optional function html-encodes messages for display in the page.
function htmlEncode(value) {
var encodedValue = $('<div />').text(value).html();
return encodedValue;
}
</script>
}
Run Code Online (Sandbox Code Playgroud)
当您在多个浏览器上打开页面时,一切正常
这里所有操作都发生在服务器" https:// localhost:48009 / "中
我碰巧在另一台服务器上有另一个项目例如" http:// localhost:18098 / "
在 index.cshtml
@{
ViewBag.Title = "index";
}
<h2>Chat</h2>
<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>
@section scripts {
<!--Script references. -->
<!--The jQuery library is required and is referenced by default in _Layout.cshtml. -->
<!--Reference the SignalR library. -->
<script src="~/Scripts/jquery.signalR-2.1.0.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
///////////////////gotohub here
<script src="https://localhost:48009//signalr/hubs"></script>
<!--SignalR script to update the chat page and send messages.-->
<script>
$(function () {
// Reference the auto-generated proxy for the hub.
///////Link to the other server
var chat = $.connection.chatHub.url="https://localhost:48009/";
// Create a function that the hub can call back to display messages.
chat.client.addNewMessageToPage = function (name, message) {
// Add the message to the page.
$('#discussion').append('<li><strong>' + htmlEncode(name)
+ '</strong>: ' + htmlEncode(message) + '</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();
});
});
});
// This optional function html-encodes messages for display in the page.
function htmlEncode(value) {
var encodedValue = $('<div />').text(value).html();
return encodedValue;
}
</script>
}
Run Code Online (Sandbox Code Playgroud)
在这里,我似乎也应用类似问题的解决方案.这种方法是否正确?
知道另一台服务器 " http:// localhost:18098 / "它还配备了Signal-R
我想将Hub内容从那里带到另一个服务器 Hub.
1.添加Nuget包SignalR
2.在App_Start中添加“Startup”类
namespace YourProjectname.App_Start {
public class Startup {
public void Configuration(IAppBuilder app) {
app.MapSignalR("/signalr",new Microsoft.AspNet.SignalR.HubConfiguration());
}
}
}
Run Code Online (Sandbox Code Playgroud)
4.如下更改你的web.config
<appSettings>
<add key="owin:AppStartup" value="YourProjectName.App_Start.Startup"/>
</appSettings>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="http://192.168.43.174:9090" />
<add name="Access-Control-Allow-Credentials" value="true" />
<add name="Access-Control-Allow-Methods" value="true" />
</customHeaders>
</httpProtocol>
</system.webServer>
Run Code Online (Sandbox Code Playgroud)
*如果您有很多客户,请允许每个请求如上所述
在您的项目下添加 Hub 文件夹
修改 Hub 类如下
namespace YourProjectName.ChatHub {
[HubName("ChatHub")]
public class ChatHub : Hub {
[HubMethodName("Sendchat")]
public void Send(String Message,String Touser) {
Clients.Client(Touser).GotMessages(Message);//send messages to specific user
//Clients.All.GotMessages(Message); //seln messages to all user
String CName = Message;
}
[HubMethodName("hubconnect")]
public void Get_Connect(String Name) {
Clients.All.GotMessages(Name +" Connected Connection Id is "+ this.Context.ConnectionId);
String CName = Name;
}
public override System.Threading.Tasks.Task OnConnected() {
return base.OnConnected();
}
public override System.Threading.Tasks.Task OnReconnected() {
return base.OnReconnected();
}
public override System.Threading.Tasks.Task OnDisconnected(bool stopCalled) {
return base.OnDisconnected(stopCalled);
}
}
}
Run Code Online (Sandbox Code Playgroud)如果您只想客户端,请安装 SignalR 客户端
将你的 Cshtml 更改如下
<h2>Chat</h2>
<div class="container">
<input type="text" id="name" placeholder="tousername"/>
<input type="text" id="message" placeholder="message" />
<input type="button" id="sendmessage" value="Send" />
<input type="hidden" id="displayname" />
<ul id="discussion"></ul>
</div>
@section scripts{
<script src="~/Scripts/jquery.signalR-2.3.0.min.js"></script>
<script>
$(function () {
//Create Hub Connection
var connection = $.hubConnection("http://192.168.43.174:9092", { useDefaultath: false });
//Add your Server above IP Addess
//Create Chat Connection
var proxy = connection.createHubProxy("ChatHub");
$('#displayname').val(prompt('Enter your name:', ''));
//Connection stablished
connection.start().done(function () {
try {
proxy.invoke("hubconnect", $('#displayname').val());
} catch (e) {
alert(e.message);
}
});
$('#sendmessage').on('click', function () {
//Send Messages to specific User
proxy.invoke("Sendchat", $('#message').val(), $('#name').val());
});
//Receive Messages from User
proxy.on("GotMessages", function (Message) {
alert(Message);
$('#discussion').append('<div>' + Message + '</br></div>');
});
});
</script>
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
131 次 |
| 最近记录: |