0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Angular】継承クラスのasyncメソッドで親クラスのメソッドを呼ぼうとすると無限ループする。。。

Posted at

Angular9で開発を行っている際に、問題にぶちあたったのでメモ。

現象

継承クラスにて、親クラスのメソッドをオーバーライドしたら無限ループするようになった。

テストコード

  • 親クラス
    • 対象のメソッドをasyncで定義
app.service.ts
import { Injectable } from '@angular/core';

@Injectable()
export class AppService {
    constructor() {}

    async test() {
        console.log('parent');
    }
}
  • 子クラス
    • 親メソッドをオーバーライドし、親のメソッドを呼び出す
app-ex.service.ts
import { Injectable } from '@angular/core';
import { AppService } from './app.service';

@Injectable()
export class AppExService extends AppService {
    constructor() {
        super();
    }

    async test() {
        console.log('child')
        super.test();
    }
}
  • コンポーネントから子クラスのメソッドを呼びだす
app.component.ts
import { Component, OnInit } from '@angular/core';
import { AppExService } from './app-ex.service';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
  title = 'extends-test';

  constructor(private service: AppExService) {
  }

  ngOnInit() {
      // 子クラスのメソッド呼び出し
      this.service.test();
  }
}

アクセスしてみる

Chromeの場合

  • 親/子ともにログがちゃんと出ている

image.png

Edgeの場合

  • 子クラスのtest()がめちゃめちゃ呼ばれる
  • 親のログが出ない

ログを見る限りでは、自分を再帰呼び出ししているっぽい。。。

image.png

superの参照がthisに変わってるのかな。。。
誰か解決方法を教えてほしい(´Д`)

とりあえず、オーバーライドしたメソッドでなければ親クラスのメソッド呼べそうなので、それで回避することにします。。。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?