我在VS 2013中创建了一个新的空项目,将其配置为使用OwinHost运行并按顺序安装以下软件包:
PM> Install-Package Owinhost
PM> Install-Package Microsoft.Owin
PM> Install-Package Microsoft.Owin.StaticFiles
PM> Install-Package Microsoft.AspNet.SignalR.JS
PM> Update-Package jQuery
PM> Install-Package Microsoft.AspNet.SignalR.Owin
然后,我添加了一个Hub类,如下所示:
using Microsoft.AspNet.SignalR;
namespace OwinHosting
{
public class MyHub : Hub
{
public void Send(string name, string message)
{
Clients.All.addMessage(name, message);
}
}
}
在startup.cs中我添加了这个:
using Microsoft.AspNet.SignalR;
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(OwinHosting.Startup))]
namespace OwinHosting
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
var config = new HubConfiguration {EnableCrossDomain = true };
app.MapHubs(config);
app.UseStaticFiles("/Web");
}
}
}
最后,我添加了一个Web文件夹,将Scripts文件夹移动到该文件夹并添加了index.html页面:
<!DOCTYPE html>
<html>
<head>
<title>SignalR Simple Chat</title>
<style type="text/css">
.container {
background-color: #99CCFF;
border: thick solid #808080;
padding: 20px;
margin: 20px;
}
</style>
</head>
<body>
<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 references. -->
<!--Reference the jQuery library. -->
<script src="Scripts/jquery-2.1.0.min.js"></script>
<!--Reference the SignalR library. -->
<script src="Scripts/jquery.signalR-2.0.3.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="http://localhost:8888/signalr/hubs"></script>
<!--Add script to update the page and send messages.-->
<script type="text/javascript">
$(function () {
//Set the hubs URL for the connection
$.connection.hub.url = "http://localhost:8888/signalr";
// Declare a proxy to reference the hub.
var chat = $.connection.myHub;
// Create a function that the hub can call to broadcast messages.
chat.client.addMessage = 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>
当我运行该页面时,它会询问“用户名”。当我输入一条消息并点击“发送”时,它只是没有任何回应。
我使用过Chrome工具,似乎“click”事件中的“chat”变量由于某种原因未定义。
有什么想法吗?
由于
答案 0 :(得分:1)
我认为您的问题是您没有安装正确的NuGet软件包。
您的聊天chat
变量未定义的原因可能是因为找不到您的http://localhost:8888/signalr/hubs
脚本,并且该脚本负责定义$.connection.myHub
。
由于您使用的是SignalR JS客户端的最新版本(2.0.3),因此您还应该使用最新的SignalR服务器组件。您安装的Microsoft.AspNet.SignalR.Owin软件包不再存在于SignalR 2.x.x中。最新的Microsoft.AspNet.SignalR.Owin包实际上取决于过时的Microsoft.AspNet.SignalR.Core 1.2.1。
开始自托管SignalR的最简单方法可能是卸载所有SignalR和Owin相关软件包并遵循本教程:http://www.asp.net/signalr/overview/signalr-20/getting-started-with-signalr-20/tutorial-signalr-20-self-host
本教程基于使用依赖于Microsoft.Owin.SelfHost而不是OwinHost的Microsoft.AspNet.SignalR.SelfHost。
安装Microsoft.Owin.Cors包并在教程中调用app.UseCors(CorsOptions.AllowAll);
非常重要,因为HubConfiguration.EnableCrossDomain
属性不再退出。