4

我正在使用“HotTowel”单页应用程序模板,但我无法让 SignalR 正常工作。我收到以下错误:

Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:8184/signalr/hubs

我有一种使用标准 MVC 4 单页应用程序的样板,有一个非常简单的集线器(用户在线计数器)。一切正常。

在我切换到“HotTowel”后它停止工作。我与 John Papa 进行了核对,他给了我一个建议,让我检查 Durandal 一侧,因为他提到他知道将对一些干扰某些路由的问题进行一些修复。

主.js:

require.config({
  paths: {
    "text": "durandal/amd/text",
    "signr": "../scripts/jquery.signalR-1.0.1.min"
  }
});
define(['durandal/app', 'durandal/viewLocator', 'durandal/system', 'durandal/plugins/router', 'services/logger', "signr"],
  function (app, viewLocator, system, router, logger, sigr) {

  // Enable debug message to show in the console
  system.debug(true);

  app.start().then(function () {
    toastr.options.positionClass = 'toast-bottom-right';
    toastr.options.backgroundpositionClass = 'toast-bottom-right';

    router.handleInvalidRoute = function (route, params) {
      logger.logError('No Route Found', route, 'main', true);
    };

    // When finding a viewmodel module, replace the viewmodel string 
    // with view to find it partner view.
    router.useConvention();
    viewLocator.useConvention();

    // Adapt to touch devices
    app.adaptToDevice();
    //Show the app by setting the root view model for our application.
    app.setRoot('viewmodels/shell', 'entrance');
  });
});

全球.asax.cs:

protected void Application_Start()
{
    FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    // Register the default hubs route: ~/signalr/hubs
    RouteTable.Routes.MapHubs();
    RouteConfig.RegisterRoutes(RouteTable.Routes);
    BundleConfig.RegisterBundles(BundleTable.Bundles);
}

热毛巾\index.cshtml:

<body>
  <div id="applicationHost">
    @Html.Partial("_splash")
  </div>

  @Scripts.Render("~/scripts/vendor")
    @if(HttpContext.Current.IsDebuggingEnabled) {
      <script type="text/javascript" src="~/App/durandal/amd/require.js" data-main="@Url.Content("~/App/main")"></script>
    } else {
      <!-- Remember to run the Durandal optimizer.exe to create the main-built.js  -->
      <script type="text/javascript" src="~/App/main-built.js"></script>
    }    
  <script type="text/javascript" src="~/signalr/hubs"></script>    
  @*<script src="~/App/services/hubs.js"></script>*@
</body>

(我知道这可能不是放置它的地方,但我无法让它出现在我的资源中,直到我把它放在这里)-顺便说一句,如果你能告诉我正确的方法,我会很感激

我还能告诉你什么来帮助我解决这个问题?我有对 SignalR 等的所有引用...我有一个使用另一个项目模板的工作示例...

有人可以指导我吗?

它应该很容易复制:

  1. 只需使用“热毛巾”模板
  2. 添加所有 SignalR 引用
  3. 用我的代码测试

我在想 Durandal 或 Require.Js 都会阻碍这一点。有人可以挽救这一天吗?:)

4

1 回答 1

10

问题是 SignalR 需要先注册其路由。HotTowel 模板尝试通过将 PreApplicationStartMethod 与 WebActivator 一起使用来“成为第一”。

解决此问题的几种方法.. 我们有可用的 WebActivator,因此您可以在 App_Start 中创建一个新类(例如 SignalRConfig.cs),如下所示:

[assembly: WebActivator.PreApplicationStartMethod(
typeof(SignalRConfig), "RegisterRoutes", Order = 1)]
public static class SignalRConfig
{
    public static void RegisterRoutes()
    {
        RouteTable.Routes.MapHubs();
    }
}

这将在 HotTowel 之前注册 SignalR 的路线。在 global.asax 中删除您对 MapHubs 的调用,因为现在将为您处理。

或者,打开 HotTowelRouteConfig.cs 并删除/注释掉这个属性:

[assembly: WebActivator.PreApplicationStartMethod(
typeof(Empire.Web.App_Start.HotTowelRouteConfig), "RegisterHotTowelPreStart", Order = 2)]

然后进入 global.asax,在调用 RouteTable.Routes.MapHubs() 之后,添加:

HotTowelRouteConfig.RegisterHotTowelPreStart();

在此之后,他们应该打得很好。

于 2013-03-09T22:52:08.207 回答