在 stackblitz 上显示 "loading"
display "loading" on stackblitz
我正在关注 Angular 中的 tutorial,代码在 Visual Studio 上有效,但在 Stackblitz.com 上有效,我有一条消息 -> loading...
我不明白为什么什么都不显示?我刚刚做了一个 copy/paste。它在 Visual Studio 上正常工作,我不明白为什么它在 Stackblitz.com 上不工作?
依赖项是:
npm install bootstrap
npm i @ngx-translate/core --save
npm i @ngx-translate/http-loader --save
代码如下:
https://stackblitz.com/edit/angular-ivy-4kkluf?file=src/app/app.component.html
非常感谢您的帮助。
一个简单的修复,您需要更改 index.html 中的 HTML 选择器。您正在使用的选择器在您的应用中不存在,请进行以下更改,它应该可以工作。 app-root
是您的根组件,my-app
不存在。
Index.html
<app-root>loading</app-root>
我正在关注 Angular 中的 tutorial,代码在 Visual Studio 上有效,但在 Stackblitz.com 上有效,我有一条消息 -> loading...
我不明白为什么什么都不显示?我刚刚做了一个 copy/paste。它在 Visual Studio 上正常工作,我不明白为什么它在 Stackblitz.com 上不工作?
依赖项是:
npm install bootstrap
npm i @ngx-translate/core --save
npm i @ngx-translate/http-loader --save
代码如下:
https://stackblitz.com/edit/angular-ivy-4kkluf?file=src/app/app.component.html
非常感谢您的帮助。
一个简单的修复,您需要更改 index.html 中的 HTML 选择器。您正在使用的选择器在您的应用中不存在,请进行以下更改,它应该可以工作。 app-root
是您的根组件,my-app
不存在。
Index.html
<app-root>loading</app-root>