インポートしようとしています 'UpgradeComponent'を '@ angular/upgrade/static'からインポートします。 ngupgradeを使用してangular2でangular1ディレクティブを使用していますが、このエラーが発生しています。予期せぬトークンのエクスポート - 角2
コード:
import { Directive, ElementRef, Injector } from '@angular/core';
import { UpgradeComponent } from '@angular/upgrade/static';
@Directive({
selector: 'help'
})
export class HelpComponentA1Directive extends UpgradeComponent {
constructor(elementRef: ElementRef, injector: Injector) {
super('help', elementRef, injector);
}
}
どこがエラーですか?エラーのショースタックトレースしてください –
Rehban、 エラーメッセージ: main.bundle.js:84キャッチされないでSyntaxError:予期しないトークン輸出 セクション - >輸出から{downgradeComponent}」でコンソールに示す エラー./ src/aot/downgrade_component '; –
@johnsam Stacktraceは、1行ではなく、ルートからの呼び出しのスタックをポストする必要があることを意味します。 –