gpt4 book ai didi

angular - 没有被填满

转载 作者:太空狗 更新时间:2023-10-29 18:08:07 25 4
gpt4 key购买 nike

我是 Angular 2 的初学者,并且已经开始了一个由这些文件组成的小项目:

app.module.ts

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

import { MaterialModule } from './material/material.module';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

import { AppComponent } from './app.component';

@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
MaterialModule,
BrowserAnimationsModule,
AppComponent,
NgModule
],
bootstrap: [AppComponent]
})
export class AppModule {
}

app.component.ts

import { Component } from '@angular/core';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent {
title = 'App Title';
}

app.component.html

<span>Welcome to {{title}}</span>

此外,我的 index.html 如下所示:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My App</title>
<base href="/">

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
</body>
</html>

我遇到的问题是,即使一切编译正常,<app-root>标记在生成的页面中保持为空,并且未添加我的模板 HTML。我已经通过更改模板 URL 测试了是否是模板加载的问题,但是它找不到我的模板文件并且编译失败。这意味着这不是问题所在。

我在这里遗漏了什么吗?

最佳答案

您已将 NgModule 装饰器和 AppComponent 类添加到模块的 imports 部分,这是错误的。从 imports 部分移除 NgModule 装饰器。同时从模块的 imports 中删除 AppComponent

@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
MaterialModule,
BrowserAnimationsModule
],
bootstrap: [AppComponent]
})
export class AppModule {
}

imports 属性应该只包含用 NgModule 装饰的类。

关于angular - <app-root> 没有被填满,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46754768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com