不能绑定到routerLink'因为它不是一个已知的属性

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

有了基本的路由设置,我现在想从头导航到一些路由,但由于我的头是router-outlet的父类,所以我收到了这个错误。

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>

现在我部分理解了,我猜由于该组件是router-outlet的包装器,因此不可能以这种方式访问router。那么,在这样的场景中,是否有可能从外部访问导航?

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

更新

1-我的package.json已经有稳定的@angular/router 3.3.1版本。 在我的主app模块中,我已经导入了routing-module. c。

.

.

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 {}

我试图访问的路由是从另一个module委托的,它是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模块的一部分的组件导航时,但没有路由器模块的概念。这是导致错误的原因吗?

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导航。如果需要,我很乐意提供更多信息。

305535 次浏览

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

确保你的包裹。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()imports中,其中组件使用来自的任何组件或指令(在这种情况下是routerLink<router-outlet>

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

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

exports: []使组件、指令、管道可用于导入模块。只添加到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组件的模块的imports部分

我正在为我的Angular应用程序运行测试,也遇到了错误Can't bind to 'routerLink' since it isn't a known property of '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",

问题是在我的spec文件。我比较了另一个类似的组件spec文件,发现我在imports中缺少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”。

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