如何在 angular 中调用 sockent.on 函数中的 class privat 变量?

How to call class privat variable inside sockent.on function in angular?

  export class AppComponent {
  title = 'my-app';

  constructor(private notifyService : NotificationService) {}

  ngOnInit() {

    socket.on("laravel_database_chat:test", function(message){
        //I WANT TO CALL NOTIFICATION SERVICE HERE, BUT NOT WORKING
        this.notifyService.showSuccess();

  });

我正在尝试调用 socket.io class 中的通知服务,但无法正常工作。

将普通函数更改为箭头函数以访问当前作用域之外的这个函数。

ngOnInit() {
    socket.on("laravel_database_chat:test", (message) => {
       this.notifyService.showSuccess();
    });
}