Unexpected 'AppRoutingModule' declared by the 'AppModule'.

发布于 2022-09-06 20:39:13 字数 841 浏览 10 评论 0

ng2小白
我想搞一个路由,求大神来帮我一把,谢谢!!!!!!!!!
git 地址在https://github.com/yyccQQu/ng...

错误信息:=》error TS1146: Declaration expected.

==>
compiler.js:485 Uncaught Error: Unexpected module 'AppRoutingModule' declared by the module 'AppModule'. Please add a @Pipe/@Directive/@Component annotation.
clipboard.png

clipboard.png

求大神来帮我一把

clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

仄言 2022-09-13 20:39:13

只需要改动App.module.ts中的内容,如下:

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

强调一点,Component在declarations中的,Module在import中的,这样你就不会出错了。

凉墨 2022-09-13 20:39:13

你的DashboardComponent没有导出任何东西啊

export class DashboardComponent implements OnInit {

    //some code
难如初 2022-09-13 20:39:13

dashboard.component.ts

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

@Component({
  selector: 'app-dashboard',
  templateUrl: './dashboard.component.html',
  styleUrls: [ './dashboard.component.css' ]
})

Changed to:

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

@Component({
  selector: 'app-dashboard',
  templateUrl: './dashboard.component.html',
  styleUrls: [ './dashboard.component.css' ]
})
export class DashboardComponent {
}

---------------UPDATE----------

图片描述

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文