Angular2 错误 - 是否包含平台模块 (BrowserModule)? [英] Angular2 Error - Is platform module (BrowserModule) included?

查看:25
本文介绍了Angular2 错误 - 是否包含平台模块 (BrowserModule)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是想在 Angular2 中运行一个简单的 index.html 页面,但它在控制台中向我显示 zone.js 中的错误:

I'm just trying to run a simple index.html page in Angular2, but its showing me an error in zone.js in console:

    Unhandled Promise rejection: No ErrorHandler. Is platform module (BrowserModule) included? ; Zone: <root> ; Task: Promise.then ; Value: Error: No ErrorHandler. Is platform module (BrowserModule) included?
    at eval (application_ref.ts:364)
    at ZoneDelegate.invoke (zone.js:391)
    at Object.onInvoke (ng_zone.ts:296)
    at ZoneDelegate.invoke (zone.js:390)
    at Zone.run (zone.js:141)
    at NgZone.run (ng_zone.ts:153)
    at PlatformRef_._bootstrapModuleFactoryWithZone (application_ref.ts:359)
    at eval (application_ref.ts:330)
    at ZoneDelegate.invoke (zone.js:391)
    at Zone.run (zone.js:141) Error: No ErrorHandler. Is platform module (BrowserModule) included?
    at eval (http://localhost:3000/node_modules/@angular/core/bundles/core.umd.js:4531:23)
    at ZoneDelegate.invoke (http://localhost:3000/node_modules/zone.js/dist/zone.js:391:26)
    at Object.onInvoke (http://localhost:3000/node_modules/@angular/core/bundles/core.umd.js:3922:33)
    at ZoneDelegate.invoke (http://localhost:3000/node_modules/zone.js/dist/zone.js:390:32)
    at Zone.run (http://localhost:3000/node_modules/zone.js/dist/zone.js:141:43)
    at NgZone.run (http://localhost:3000/node_modules/@angular/core/bundles/core.umd.js:3853:69)
    at PlatformRef_._bootstrapModuleFactoryWithZone (http://localhost:3000/node_modules/@angular/core/bundles/core.umd.js:4526:23)
    at eval (http://localhost:3000/node_modules/@angular/core/bundles/core.umd.js:4568:59)
    at ZoneDelegate.invoke (http://localhost:3000/node_modules/zone.js/dist/zone.js:391:26)
    at Zone.run (http://localhost:3000/node_modules/zone.js/dist/zone.js:141:43)

有人可以帮助我基本上它是什么以及如何解决这个问题.模块文件:

Can someone help me basically what it is and how to fix this. Module File:

import {Component, NgModule} from "@angular/core";
import {App} from "./app";

@NgModule({
    declarations: [App],
    bootstrap: [App]
})
export class AppModule {

}

推荐答案

您缺少

import { BrowserModule } from '@angular/platform-browser';

添加到您的应用模块

@NgModule({
imports: [
    BrowserModule,
]
...})

这篇关于Angular2 错误 - 是否包含平台模块 (BrowserModule)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆