gpt4 book ai didi

javascript - 新组件不渲染 Angular

转载 作者:行者123 更新时间:2023-11-30 20:25:08 25 4
gpt4 key购买 nike

我是 Angular 的初学者。我想在我的项目中创建一个新组件,但当我在我的 index.html 中使用它时它没有呈现。

我使用了这个命令:

ng new test
cd test
ng generate component radio

在我编辑了 index.html 之后:

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

当我执行 ng serve 时的结果:

 app works!
Loading...

在 app/radio/radio.component.html 中,我自动生成了这段代码:

<p>
radio works!
</p>

那么,为什么它没有在我的浏览器中呈现?我的错误在哪里?

最佳答案

您的 app-root 是您的 Angular 应用程序的应用程序容器。

设置您的 <app-radio></app-radio>在 app.component.html 中,您应该会看到它。

希望对您有所帮助!

关于javascript - 新组件不渲染 Angular,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51009970/

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