我收到错误未捕获错误:意外值'未定义'由模块导入的AppModule'问题,我不确定是什么导致它。
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { MdTooltipModule} from '@angular/material';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
MdTooltipModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
这是我的app.module.ts,我已经看了一些其他问题,但它没有帮助。在我添加MdTooltipModule之前它正在工作,所以我不确定是否会导致问题?
compiler.js:485 Uncaught Error: Unexpected value 'undefined' imported by the module 'AppModule'
at syntaxError (compiler.js:485)
at eval (compiler.js:15240)
at Array.forEach (<anonymous>)
at CompileMetadataResolver.getNgModuleMetadata (compiler.js:15209)
at JitCompiler._loadModules (compiler.js:34405)
at JitCompiler._compileModuleAndComponents (compiler.js:34366)
at JitCompiler.compileModuleAsync (compiler.js:34260)
at CompilerImpl.compileModuleAsync (platform-browser-dynamic.js:239)
at PlatformRef.bootstrapModule (core.js:5567)
at eval (main.ts:11)
答案 0 :(得分:1)
应该是MatTooltipModule
而不是MdTooltipModule
。