最近,我开始使用angular 2。到目前为止还不错。所以,为了学习使用angular-cli,我已经开始了一个演示个人项目。

有了基本的路由设置,我现在想从头导航到一些路由,但由于我的头是路由器出口的父,我收到了这个错误。

app.component.html

<app-header></app-header> // Trying to navigate from this component
    <router-outlet></router-outlet>
<app-footer></app-footer>

header.component.html

<a [routerLink]="['/signin']">Sign in</a>

现在我部分理解了,我猜,因为该组件是一个包装路由器出口,它不可能以这种方式访问路由器。那么,在这样的场景中,是否有可能从外部访问导航?

如果需要的话,我很乐意提供更多的信息。先谢谢你。

更新

1-我的包裹。Json已经有了稳定的@angular/router 3.3.1版本。 2-在我的主应用模块中,我已经导入了路由模块。请看下文。

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AlertModule  } from 'ng2-bootstrap';
import { LayoutModule } from './layout/layout.module';
import { UsersModule } from './users/users.module';
import { AppRoutingModule } from  './app-routing.module';
import { AppComponent } from './app.component';
import { PageNotFoundComponent } from './shared/components/not-found.component';

@NgModule({
  declarations: [
    AppComponent,
    PageNotFoundComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    AlertModule.forRoot(),
    LayoutModule,
    UsersModule,
    AppRoutingModule  --> This is the routing module. 
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

app-routing.module.ts

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { SigninComponent } from './users/signin/signin.component';
import { PageNotFoundComponent } from './shared/components/not-found.component';

const routes: Routes = [
{ path: '**', component: PageNotFoundComponent }
];

@NgModule({
    imports: [RouterModule.forRoot(routes)],
    exports: [RouterModule]
})

export class AppRoutingModule {}

我试图访问的路由是从另一个模块UsersModule委托的

user-routing.module.ts

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { SigninComponent } from './signin/signin.component';

const usersRoutes: Routes = [
  { path: 'signin',  component: SigninComponent }
];
@NgModule({
  imports: [
    RouterModule.forChild(usersRoutes)
  ],
  exports: [
    RouterModule
  ]
})

export class UsersRoutingModule { }

虽然我试图从布局模块的一部分组件导航,但没有路由器模块的概念。这是导致错误的原因吗?

Layout.module.ts

import { NgModule } from '@angular/core';
import { HeaderComponent } from './header/header.component';
import { FooterComponent } from './footer/footer.component';

@NgModule({
  declarations: [HeaderComponent, FooterComponent],
  exports: [HeaderComponent, FooterComponent]
})
export class LayoutModule{}

我试图从HeaderComponent导航。如果需要,我很乐意提供更多信息。


你没有包含路由包,或者在你的主应用模块中包含路由器模块。

确保你的包裹。Json有这个:

"@angular/router": "^3.3.1"

然后在app.module中导入路由器并配置路由:

import { RouterModule } from '@angular/router';

imports: [
        RouterModule.forRoot([
            {path: '', component: DashboardComponent},
            {path: 'dashboard', component: DashboardComponent}
        ])
    ],

更新:

移动AppRoutingModule到导入的第一个:

imports: [
    AppRoutingModule.
    BrowserModule,
    FormsModule,
    HttpModule,
    AlertModule.forRoot(), // What is this?
    LayoutModule,
    UsersModule
  ],

你需要将RouterModule添加到每个@NgModule()的导入中,在这些@NgModule()中,组件使用来自(在这个例子中是routerLink和<router-outlet>)的任何组件或指令。

import {RouterModule} from '@angular/router';
@NgModule({
   declarations:[YourComponents],
   imports:[RouterModule]

Declarations:[]是让组件、指令、管道在当前模块内部已知。

Exports:[]是使组件、指令、管道可用于导入模块。添加到声明中的内容只对模块私有。出口使他们公开化。

参见https://angular.io/api/router/RouterModule#usage-notes


我将添加另一种情况,我得到了同样的错误,但只是一个假人。我已经添加了[routerLinkActiveOptions]="{exact: true}"而没有添加routerLinkActive="active"。

我的错误代码是

<a class="nav-link active" routerLink="/dashboard" [routerLinkActiveOptions]="{exact: true}">
  Home
</a>

本该如此的时候

<a class="nav-link active" routerLink="/dashboard" routerLinkActive="active" [routerLinkActiveOptions]="{exact: true}">
  Home
</a>

没有routerLinkActive,就没有routerLinkActiveOptions。


当其他方法都不起作用时,重启ng serve。发现这种虫子真让人难过。


在我的例子中,我只需要将新创建的组件导入RouterModule

{path: 'newPath', component: newComponent}

然后在app.module中导入路由器并配置路由:

import {RouterModule} from '@angular/router';

imports: [
        RouterModule.forRoot([
            {path: '', component: DashboardComponent},
            {path: 'dashboard', component: DashboardComponent},
            {path: 'newPath', component: newComponent}
        ])
    ],

希望这对一些人有所帮助!!


你需要将RouterMoudle添加到包含Header组件的模块的导入部分中


我正在为我的Angular应用程序运行测试,遇到了无法绑定到“routerLink”的错误,因为它也不是“a”的已知属性。

我觉得展示一下我的Angular依赖关系会很有用:

    "@angular/animations": "^8.2.14",
    "@angular/common": "^8.2.14",
    "@angular/compiler": "^8.2.14",
    "@angular/core": "^8.2.14",
    "@angular/forms": "^8.2.14",
    "@angular/router": "^8.2.14",

问题出在我的规格文件中。我比较了另一个类似的组件规范文件,发现我在导入中缺少RouterTestingModule。

    TestBed.configureTestingModule({
      declarations: [
        ...
      ],
      imports: [ReactiveFormsModule, HttpClientTestingModule, RouterTestingModule],
      providers: [...]
    });
  });

在当前组件的模块中导入RouterModule。

如:-

import {RouterModule} from '@angular/router';
@NgModule({
   declarations:[YourComponents],
   imports:[RouterModule]

...

它帮助了我。


我完全选择了另一种方法。

app.component.ts

import { Router } from '@angular/router';
export class AppComponent {

   constructor(
        private router: Router,
    ) {}

    routerComment() {
        this.router.navigateByUrl('/marketing/social/comment');
    }
}

app.component.html

<button (click)="routerComment()">Router Link </button>

我得到了这个错误,即使我已经从app-routing导出了RouterModule。在根模块(app模块)中导入app- routingmodule。

然后我确定,我只在路由模块中导入了组件。

在我的根模块(App模块)声明组件解决了这个问题。

declarations: [
AppComponent,
NavBarComponent,
HomeComponent,
LoginComponent],

这个问题是因为您没有导入模块

import {RouterModule} from '@angular/router';

您必须在import部分声明此模块

   imports:[RouterModule]

我在这上面浪费了2个小时。这是我的Visual Studio的一个bug。我不得不重新安装Angular并再次更新我的NPM,现在它又可以工作了。


你需要在你的主模块中导入RouterModule。ts文件

import {RouterModule} from '@angular/router';


@NgModule({
  imports: [RouterModule],
 )}

刚刚在一个学生的例子中发现了类似的问题。在花了2个小时检查这里和一些类似主题的所有建议后,发现错误是routerlink而不是routerlink。

似乎很容易发现这些“一个字母的错别字”,但在你以前从未见过的地方就不一样了。


在组件的模块中添加RouterModule


只需像这样添加RouterModule:

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SidebarItemComponent } from './sidebar-item/sidebar-item.component';
import { RouterModule } from '@angular/router';

@NgModule({
  declarations: [
    SidebarItemComponent
  ],

  imports: [
    CommonModule,
    RouterModule,
  ], 
})
export class LayoutModule { }

老问题,这似乎不是OP的问题,但当我搜索同样的“不能绑定到'routerlink',因为它不是一个已知的属性…”消息时,我在这里结束了。我想我应该分享我的问题,以防别人也这么做。

在验证RouterModule包含在我的AppRoutingModule中并且路由都正确设置了之后,我终于注意到一个非常微妙的问题:我把“[routerLink]”换成了小写的“l”[routerLink]。

有趣的是,你的大脑有时会忽略一些盯着你的东西。