看看这个堆叠闪电战,我无法在'app.module.ts'中导入任何内容,这会导致我出错。(找不到文件) https://stackblitz.com/edit/authenticationdemo?file=src%2Fapp%2Fapp.module.ts 我该怎么解决?
我在debian 10上运行了firefox 68.2.0esr(64位)
谢谢
答案 0 :(得分:1)
从这里
import { RestrictedPageComponent } from './restricted-page/restricted-page.component.ts';
像这样import { RestrictedPageComponent } from './restricted-page/restricted-page.component';
您的文件名不正确,有两个点..ts
styleUrls: ['./restricted-page.component.css']
将给出错误,因为您尚未创建此文件。index.html
中而不是<my-app> loading </my-app>
中,它应该是<app-root>loading</app-root>
工作演示: demo