私は非常に多額のプロジェクトの更新に取り組んでいます。タイプ上に存在しない角型マイグレーションのエラー、2.1.x => 4.1.3
プロパティ「クエリ」「BrowserDomAdapter」:
私はbrowserdomadapterに関連したエラーを取得しています。ここで
コードは次のとおりです。
constructor(titleService: Title) {
this.titleService = titleService;
this.dom = new BrowserDomAdapter();
this.headElement = this.dom.query('head');
this.metaDescription = this.getOrCreateMetaElement('description');
this.robots = this.getOrCreateMetaElement('robots');
}
と:
private getOrCreateMetaElement(name: string): HTMLElement {
let el: HTMLElement;
el = this.dom.query('meta[name=' + name + ']');
if (el === null) {
el = this.dom.createElement('meta');
el.setAttribute('name', name);
this.headElement.appendChild(el);
}
return el;
}
私も同様のWebPACKの1.x.xから最新に移行しなければなりませんでした。
[** this issue **](https://github.com/angular/angular/issues/8509)を確認してください。 – developer033
Googleに常に良い/角度の問題トラッカーの問題を検索 –