我在我的项目中有以下引用:
+--------------+--------------+
| Staff Member | Total Points |
+--------------+--------------+
| John A | 11.25 |
| John B | 7.75 |
| John C | 14 |
| John D | 13 |
| John E | 14.25 |
| John F | 14 |
| John G | 5.75 |
| John H | 6 |
| John J | 10.5 |
| John K | 2 |
| John L | 0 |
| John M | 9.75 |
+--------------+--------------+
代码到达此处:
<script src="@Url.Content("~/Scripts/DataTables-1.9.2/media/js/jquery.dataTables.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.signalR-0.5.2.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/signalr/hubs")"></script>
它给出了一个错误,指出无法启动空引用,意味着没有集线器! 该项目在服务器上运行良好,但是我在https上的localhost上遇到了这个问题,我的问题是为什么在服务器上它可以检测到中心,但是在我的localhost上没有中心?我应该手动设置一些东西吗?>