Angular 2 - 无法从SignalR范围

时间:2017-01-24 11:14:21

标签: javascript angular typescript signalr signalr-hub

我正在尝试使用带有角度2组件的信号器(外部加载的脚本),但面临有线问题。我的函数在typescript中被调用,其中包含我从WebAPI传递的正确信息,但在那些typescript函数中,我不能使用任何声明的属性或函数。

从我的WebAPI,我正在通知客户

IHubContext hubContext = GlobalHost.ConnectionManager.GetHubContext<CarBidHub>();
hubContext.Clients.All.NotifyManager_BidPlaced(message);

这会在我的角度组件中启动一个调用,我将其定义为

declare var jQuery: any;
declare var moment: any;
var hub = jQuery.connection.carBidHub;  //declaring hub
@Component({
    selector: 'live-auction',
    templateUrl: '/auctions/live/live-auction.html'
})
export class LiveAuctionComponent
{
    ...
    constructor(private notificationService: NotificationsService)
    {
    }
    ...

    private startHub(): void {
            jQuery.connection.hub.logging = false;

            hub.client.NotifyManager_BidPlaced = function (message:string) {
                //this message is printed on all connected clients
                console.log(message);   

                //but this line below throws an error on all members I am trying to access with "this."
                this.notificationService.success('Information', message);   
            }

            //this.notificationService is available here

            //Start the hub
            jQuery.connection.hub.start();
    }
}

我试过打电话

//call start hub method 
this.startHub();

来自ngAfterViewInit,OnInit和组件的构造函数但没有工作。

我可以猜测signalr的接收器是在typescript函数中定义的问题,因此在外部调用时它可能没有正确的上下文。

  

有没有办法可以从中访问声明的成员   NotifyManager_BidPlaced函数?

1 个答案:

答案 0 :(得分:2)

很多例子都存在同样的问题。经验法则,不要在类中使用function关键字。这将使this上下文替换为当前函数作用域的上下文。始终使用() => {}表示法:

private startHub(): void {
    jQuery.connection.hub.logging = false;

    hub.client.NotifyManager_BidPlaced = (message:string) => { //here
      this.notificationService.success('Information', message);   
    };

    jQuery.connection.hub.start();
}