0
派生コントローラクラス(型スクリプトを使用して定義)を作成し、それを親コントローラクラス(型スクリプトクラス)で使用しました。派生コントローラクラスのKarma throw 404エラー
すべてが正しいと思われますが、カルマはこのファイルをロードできません。 404エラーが発生します。
は、ここで私たちも親クラスのクラスが含まれているエラー
Error: (SystemJS) XHR error (404 Not Found) loading Path/Controller.js
Error: XHR error (404 Not Found) loading Path/Controller.js
Error loading Path/Controller.js as ".Path/ParentClass.js
です。
インポート 'Path/ChildClass';
ブラウザに表示されるエラーは次のとおりです。
Uncaught (in promise) TypeError: Cannot read property 'error' of undefined
at directCallParentKarmaMethod (context.js:233)
at ContextKarma.error (context.js:139)
at adapter.js:186
コントローラからこのインポートステートメントを削除しても、カルマテストはうまく動作します。
私が推測しているのは、インポートされるコントローラが子/派生コントローラだからです。
これを修正できる方法はありますか?