我正在使用“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 等的所有引用...我有一个使用另一个项目模板的工作示例...
有人可以指导我吗?
它应该很容易复制:
- 只需使用“热毛巾”模板
- 添加所有 SignalR 引用
- 用我的代码测试
我在想 Durandal 或 Require.Js 都会阻碍这一点。有人可以挽救这一天吗?:)