8

我创建了一个组件,其中包含一个带有 routerLink 属性的元素,我想从使用该组件的模板中设置该属性。当我尝试这样做时,我收到错误消息“无法读取未定义的属性'路径'”。

我的组件看起来链接这个:

信息框.component.ts

import { Input, Component } from "@angular/core";
import { ROUTER_DIRECTIVES } from "@angular/router";

@Component({
    selector: "info-box",
    template: require("./info-box.component.html"),
    directives: [
        ROUTER_DIRECTIVES
    ]
})

export class InfoBoxComponent {
    @Input() routerLink: string;
    @Input() imageUrl: string;
}

info-box.component.html

<a [routerLink]="[routerLink]"> 
    <img src="{{imageUrl}}" width="304" height="236">
</a>

并且使用该组件的模板如下所示:

<info-box [routerLink]="['/test']" [imageUrl]="['./testimage.jpg']"

如果我不添加 routerLink 一切正常。我的路由器配置似乎是正确的,因为当我直接将其添加到我的模板时它也可以正常工作。谁能帮我这个?

格特·马尔科

4

3 回答 3

15

您可以使用这样的代码在 html 中动态创建 url。

例如,您在路由器中的路径是,path:'destination/:id'那么您可以routerLink像这样使用:

<div *ngFor = "let item of items">
 <a routerLink = "/destination/{{item.id}}"></a>
</div>
于 2016-12-27T08:28:26.997 回答
6

对于任何在使用 Angular 2.4 时遇到此问题的人

import { AppRoutingModule } from './app-routing.module';

在不再需要的app.module.ts代替中,以下语法对我有用:ROUTER_DIRECTIVES

<a [routerLink]="['item', item.id ]">Item</a>
于 2016-12-27T23:00:34.430 回答
1

假设您的数组看起来像:

this.menuuItems = [
  {
    text: 'Tournament Setup',
    path: 'app-tournament'
  }];

现在在你的 html 中使用

<li *ngFor = "let menu of menuuItems">
     <span routerLink="/{{menu.path}}">
      <a>{{menu.text}}</a>
    </span>
    </li>
于 2018-10-07T18:16:37.680 回答