我可以让本教程在一个新项目中工作,但不能在我现有的项目中工作。
我的项目是一个 ASP.Net MVC 4 Web 应用程序,在 web.config 文件中具有以下属性:
<appSettings>
<add key="webpages:Enabled" value="true"/>
</appSettings>
这是因为我的应用程序是单页应用程序,它在客户端使用 AngularJS。我的应用程序中唯一的页面是 index.cshtml,我在其中添加了 signalR 的相关代码:
<!-- signalR chat -->
<script src="~/Scripts/jquery.signalR-1.0.0.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="/signalr/hubs"></script>
<!--Add script to update the page and send messages.-->
<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>
然后我得到了 ChatHub.cs 文件:
public class ChatHub : Hub
{
public void Send(string name, string message)
{
// Call the broadcastMessage method to update clients.
Clients.All.broadcastMessage(name, message);
}
}
最后在 global.asax 中:
protected void Application_Start()
{
RouteTable.Routes.MapHubs();
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
当我运行应用程序时,不会生成 /signalr/hubs 文件。我在请求文件时收到 404,它在线上崩溃:
chat.client.broadcastMessage = function (name, message) { ....
因为上一行没有找到chatHub,所以聊天为空:
var chat = $.connection.chatHub;
有谁知道我的代码有什么问题?
更新
我通过更改行解决了我的问题::
<script src="/signalr/hubs"></script>
至
<script src="~/signalr/hubs"></script>