복붙노트

[ANGULAR] 오류 : (SystemJS) ActivateDroute의 모든 매개 변수를 해결할 수 없습니다. (?,?,?,?,?,?,?)

ANGULAR

오류 : (SystemJS) ActivateDroute의 모든 매개 변수를 해결할 수 없습니다. (?,?,?,?,?,?,?)

해결법


  1. 1.제거 제공자 : [ActivatedRoute] @Component () 필요가 없습니다. routermodule.forroot ()는 이미 필요한 모든 것을 제공합니다.

    제거 제공자 : [ActivatedRoute] @Component () 필요가 없습니다. routermodule.forroot ()는 이미 필요한 모든 것을 제공합니다.


  2. 2.@ günter-zöchbauer의 답변을 확장하려면. @ngmodule의 속성 내보내기에 routermodule을 추가했는지 확인하십시오. 수출에 지정된 지시문 / 파이프 / 모듈은

    @ günter-zöchbauer의 답변을 확장하려면. @ngmodule의 속성 내보내기에 routermodule을 추가했는지 확인하십시오. 수출에 지정된 지시문 / 파이프 / 모듈은

    I.E.E. 모듈의 모든 하위 구성 요소에서.

  3. from https://stackoverflow.com/questions/40509325/error-systemjs-cant-resolve-all-parameters-for-activatedroute by cc-by-sa and MIT license