未知HTML标记搜索:<;微调器>;——它是什么?它来自哪里?

未知HTML标记搜索:<;微调器>;——它是什么?它来自哪里?,html,angular,Html,Angular,编辑:通过消除过程,似乎是由其他依赖项添加的模块的一部分。有趣的是,乍一看,该模块使用作为标记,而不是 在“继承的”Angular 6应用程序中,我的app.component.html中有以下行: 这似乎用于在加载数据时生成动画覆盖(从左下角到右上角,正方形以波浪形式出现和消失): 问题是:这是什么标签 如果禁用它,加载动画将不再显示。但我在代码中或互联网上找不到与之相关的内容,也找不到引用它的元素。所以我不知道是谁控制了它的行为 我的app.component.ts: import {

编辑:通过消除过程,似乎是由其他依赖项添加的模块的一部分。有趣的是,乍一看,该模块使用
作为标记,而不是

在“继承的”Angular 6应用程序中,我的app.component.html中有以下行:

这似乎用于在加载数据时生成动画覆盖(从左下角到右上角,正方形以波浪形式出现和消失):

问题是:这是什么标签

如果禁用它,加载动画将不再显示。但我在代码中或互联网上找不到与之相关的内容,也找不到引用它的元素。所以我不知道是谁控制了它的行为

我的app.component.ts:

import { environment } from '../environments/environment';    
import { Component, OnInit } from '@angular/core';
import { MatSnackBar } from '@angular/material';
import { Router } from '@angular/router';    
import { TranslateService } from '@ngx-translate/core';
import { BreadcrumbService, BreadcrumbComponent } from 'ng5-breadcrumb' ;   


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

  constructor(..., private sw: SwUpdateService, public snackBar: MatSnackBar) {
  }

  ngOnInit() {
    this.sw.checkForUpdates();
    this.sw.onUpdateAvailable().subscribe((updEvent) => {
      this.snackBar.open('Software update available!', 'Update').onAction().subscribe(() => {
        document.location.reload();
      });
    });
  }

  navigateA(): void {
    this.router.navigate(["/a"]);
  }

  navigateB(): void {
    this.router.navigate(["/b"]);
  }

  navigateC():  void {
    this.router.navigate(["/c"]);
  }

  navigateD(): void {
    this.router.navigate(["/d"]);
  }
}

此标记来自用于显示此类加载动画的组件,可能是app.module.ts中的外部模块,如NgxSpinner。

谢谢!嗯,这一点很清楚;-)我只是想,在我手动检查所有依赖项之前,我应该询问一下是否有人能识别它。我的依赖项中没有任何角度微调器组件,所以我假设其他依赖项会添加它。