我目前正在使用 SignalR 进行一个项目。在我的生产服务器上,它缺少一个自动生成的 .js 文件~/signalr/hubs
。我想试试这个解决方案:
SignalR not working on production server
但是当我尝试将此行添加到我的application_start
方法中时global.asax
,我的项目将不再构建。虽然智能感知知道并建议扩展方法!
我用using SignalR;
. 我尝试将其作为扩展方法调用,并将其作为静态方法调用,并将对象实例作为第一个参数。确切的错误消息:
作为扩展方法调用时:
Error 1 'System.Web.Routing.RouteCollection' does not contain a definition for 'MapHubs' and no extension method 'MapHubs' accepting a first argument of type 'System.Web.Routing.RouteCollection' could be found (are you missing a using directive or an assembly reference?)
作为静态方法调用时:
Error 1 The type or namespace name 'RouteExtensions' does not exist in the namespace 'SignalR' (are you missing an assembly reference?)
有谁知道为什么会发生这种情况以及如何解决这个问题?提前谢谢了!