gpt4 book ai didi

javascript - angular 8 - 组件未加载到 html 中

转载 作者:搜寻专家 更新时间:2023-10-30 21:25:24 25 4
gpt4 key购买 nike

我想知道是否有人遇到过与我现在遇到的类似问题?

我正在学习 Scrimba 上的 Angular 类(class),它的第 7 课, Angular 组件。

我使用 cli 命令创建了 Angular 应用程序,并尝试加载和更改“正在加载...”像讲座一样带有“ Hello World ”的部分,甚至复制了整个代码并将其粘贴到我的本地文件中并刷新了 index.html,但仍然没有用!

不知道有没有人知道或者遇到过类似的问题?非常感谢您的帮助!

这就是我的 app.component

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

@Component({
selector: 'app-root',
template: `<h1>{{ title }}</h1>`,
templateUrl: './app.component.html',
styleUrls: ['./app.component.sass']
})
export class AppComponent implements OnInit {
title: string;
constructor(){ }

ngOnInit() {
this.title = 'hello';
}
}

这就是我的 app.module

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

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { CustomersComponent } from './customers/customers.component';

@NgModule({
declarations: [
AppComponent,
CustomersComponent
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

这是我的 index.html

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AngularProject</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>
Loading...
</app-root>
</body>
</html>

最佳答案

你不能同时拥有这两个

  template: `<h1>{{ title }}</h1>`,
templateUrl: './app.component.html',

你可以删除其中一个

顺便说一下你的项目设置我必须说你缺少一些配置文件。您应该按照以下步骤运行您的应用

npm install -g @angular/cli
ng new my-dream-app
cd my-dream-app
ng serve

注意这是我的错误所以你需要按照上面的步骤操作

enter image description here

关于javascript - angular 8 - 组件未加载到 html 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57528216/

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