23

我可以让本教程在一个新项目中工作,但不能在我现有的项目中工作。

我的项目是一个 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>:&nbsp;&nbsp;' + 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>
4

8 回答 8

20

我通过更改行解决了我的问题::

<script src="/signalr/hubs"></script>

<script src="~/signalr/hubs"></script>
于 2013-07-02T10:01:44.267 回答
8

另外,没有生成 /signalr/hubs 的原因是忘记在 OWIN 启动配置中映射 SignalR。

public class Startup
{
   public void Configuration(IAppBuilder appBuilder){
         ...
         appBuilder.MapSignalR();
         ...
   }
 ...
于 2015-06-17T11:18:52.667 回答
2

就我而言,这是因为我的 ChatHub 课程没有标记为公开。

于 2015-11-28T21:35:07.717 回答
1

我有一个类似的问题,没有生成集线器文件。看起来 OP 正在按照此处的步骤操作。我解决问题的方式与 jquery 包括有关。我在下面链接的教程是用 jquery 1.6.4 和 jquery-signalr 版本 2.1.0 编写的。当 Visual Studio 为我生成 Scripts 文件夹时,它使用 jquery 版本 1.10.2 和 jquery-signalr 版本 2.0.2。

我解决这个问题的方法只是编辑 index.html 文件。请注意,您可以使用 Chrome 的 javascript 控制台窗口 Ctrl+Shift+J 查看错误。

于 2015-02-02T15:03:35.617 回答
1

对我来说,解决方案是重新安装所有软件包并恢复所有依赖项

打开 nuget powershell 控制台并使用此命令。

Update-Package -Reinstall
于 2017-05-27T09:50:31.327 回答
0

就我而言,我失踪了:

        app.MapSignalR();

public void Configuration(IAppBuilder app)位于 startup.cs 的函数中

于 2019-03-21T17:35:39.860 回答
0

我想补充一点,signalR 自述文件对此问题有一些说明。此外,如果您的 signalR 页面位于 PartialView 中,则应将一些脚本放置在母版页中。

Please see http://go.microsoft.com/fwlink/?LinkId=272764 for more information on using SignalR.

Upgrading from 1.x to 2.0
-------------------------
Please see http://go.microsoft.com/fwlink/?LinkId=320578 for more information on how to 
upgrade your SignalR 1.x application to 2.0.

Mapping the Hubs connection
----------------------------
To enable SignalR in your application, create a class called Startup with the following:

using Microsoft.Owin;
using Owin;
using MyWebApplication;

namespace MyWebApplication
{
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            app.MapSignalR();
        }
    }
} 

Getting Started
---------------
See http://www.asp.net/signalr/overview/getting-started for more information on how to get started.

Why does ~/signalr/hubs return 404 or Why do I get a JavaScript error: 'myhub is undefined'?
--------------------------------------------------------------------------------------------
This issue is generally due to a missing or invalid script reference to the auto-generated Hub JavaScript proxy at '~/signalr/hubs'.
Please make sure that the Hub route is registered before any other routes in your application.

In ASP.NET MVC 4 you can do the following:

      <script src="~/signalr/hubs"></script>

If you're writing an ASP.NET MVC 3 application, make sure that you are using Url.Content for your script references:

    <script src="@Url.Content("~/signalr/hubs")"></script>

If you're writing a regular ASP.NET application use ResolveClientUrl for your script references or register them via the ScriptManager 
using a app root relative path (starting with a '~/'):

    <script src='<%: ResolveClientUrl("~/signalr/hubs") %>'></script>

If the above still doesn't work, you may have an issue with routing and extensionless URLs. To fix this, ensure you have the latest 
patches installed for IIS and ASP.NET. 
于 2017-04-10T14:25:13.037 回答
0

对于那些从一开始就开始向外扩展的人的一些建议。就我而言,我正在努力让远程客户端工作,但从未意识到

A. 本教程示例在 using 语句中列出了 web 应用程序(服务器)启动,之后 web 应用程序正确处理并且不再存在。

我摆脱了 using 语句并保留对 Web 应用程序的引用以供以后处理

B. 客户端与服务器的 url 不同。该示例依赖于它们具有相同的 url。“/signalr/hubs”是由信号器服务器运行的端点,由信号器客户端调用以获取服务器实现的所有集线器的脚本。

您需要包含“ http://myServerURL/signalr/hubs ”,而不是使其相对于客户端。

没有谎言。这让我绊倒了整整 2 周,因为通过某种魔法,该解决方案无论如何都适用于我同事的设置。这导致我一直在寻找 IIS 设置和防火墙设置以及 CORS 设置,这些设置一定会阻止我的计算机上的连接。我尽可能地清理了最后一个堆栈溢出问题,最终的答案是我应该从一开始就在 Web 应用程序上实现一个心跳监视器。

祝你好运,希望这可以节省其他人一些时间。

于 2020-05-05T15:19:32.097 回答