这应该有用吗?我想在start和done之间链接read func。我不能让它工作。最终的obj只是一些内部SignalR对象。我正在使用SignalR 2.2
var app = $.connection.appHub;
$.connection.hub.start()
.then(function() {
return app.server.read();
})
.done(function (obj) {
console.log(obj); // Should be the result from the read promise, but is not
}
答案 0 :(得分:1)
所以它应该有效。您可以看到您的功能是否已阅读'返回一个值。
[HubName("appHub")]
public class AppHub : Hub
{
public string Read()
{
return "ok";
}
}