0

Why does the signalr project choose to extend jquery with their connection?

Surely there is a reason, i just wanna know. :)

$.connection.hub.start();

could instead be

var connection = signalr.createConnection();
connection.start();
4

1 回答 1

1

今天 signalr 是一个 jquery 插件,因为它使用 jquery 的组件,包括:

  • 延期
  • 活动
  • 阿贾克斯

有一个工作项可以将 SignalR 与 jQuery 分离,但目前它在优先级列表中并不是很高。

于 2013-07-09T16:54:56.647 回答