显然,Angular2的beta版本比新版本更新,所以没有太多的信息,但我正在尝试做一些我认为相当基本的路由。

通过快速启动代码和https://angular.io网站上的其他代码片段,可以得到以下文件结构:

angular-testapp/
    app/
        app.component.ts
        boot.ts
        routing-test.component.ts
    index.html

按照如下方式填充文件:

index . html

<html>

  <head>
    <base href="/">
    <title>Angular 2 QuickStart</title>
    <link href="../css/bootstrap.css" rel="stylesheet">

    <!-- 1. Load libraries -->
    <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
    <script src="node_modules/systemjs/dist/system.src.js"></script>
    <script src="node_modules/rxjs/bundles/Rx.js"></script>
    <script src="node_modules/angular2/bundles/angular2.dev.js"></script>
    <script src="node_modules/angular2/bundles/router.dev.js"></script>

    <!-- 2. Configure SystemJS -->
    <script>
      System.config({
        packages: {        
          app: {
            format: 'register',
            defaultExtension: 'js'
          }
        }
      });
      System.import('app/boot')
            .then(null, console.error.bind(console));
    </script>

  </head>

  <!-- 3. Display the application -->
  <body>
    <my-app>Loading...</my-app>
  </body>

</html>

boot.ts

import {bootstrap}    from 'angular2/platform/browser'
import {ROUTER_PROVIDERS} from 'angular2/router';

import {AppComponent} from './app.component'

bootstrap(AppComponent, [
    ROUTER_PROVIDERS
]);

app.component.ts

import {Component} from 'angular2/core';
import {RouteConfig, ROUTER_DIRECTIVES, ROUTER_PROVIDERS, LocationStrategy, HashLocationStrategy} from 'angular2/router';

import {RoutingTestComponent} from './routing-test.component';

@Component({
    selector: 'my-app',
    template: `
        <h1>Component Router</h1>
        <a [routerLink]="['RoutingTest']">Routing Test</a>
        <router-outlet></router-outlet>
        `
})

@RouteConfig([
    {path:'/routing-test', name: 'RoutingTest', component: RoutingTestComponent, useAsDefault: true},
])

export class AppComponent { }

routing-test.component.ts

import {Component} from 'angular2/core';
import {Router} from 'angular2/router';

@Component({
    template: `
        <h2>Routing Test</h2>
        <p>Interesting stuff goes here!</p>
        `
})
export class RoutingTestComponent { }

试图运行此代码会产生以下错误:

EXCEPTION: Template parse errors:
Can't bind to 'routerLink' since it isn't a known native property ("
        <h1>Component Router</h1>
        <a [ERROR ->][routerLink]="['RoutingTest']">Routing Test</a>
        <router-outlet></router-outlet>
        "): AppComponent@2:11

我在这里发现了一个模糊相关的问题;升级到angular2.0.0-beta.0后,路由器链接指令被破坏。然而,其中一个答案中的“工作示例”是基于预测试代码的-它可能仍然工作,但我想知道为什么我创建的代码不能工作。

任何建议都将不胜感激!


当前回答

我非常感谢@raykrow的回答,当一个人只有在测试文件中有这个问题!这就是我遇到它的地方。

因为有另一种方法来做备份是很有帮助的,所以我想提一下这个技巧,它也同样有效(而不是导入RouterTestingModule):

import { MockComponent } from 'ng2-mock-component';
. . .
TestBed.configureTestingModule({
  declarations: [
    MockComponent({
      selector: 'a',
      inputs: [ 'routerLink', 'routerLinkActiveOptions' ]
    }),
    . . .
  ]

(通常情况下,我们会在<a>元素上使用routerLink,但对其他组件相应地调整选择器。)

我想要提到这个替代解决方案的第二个原因是,尽管它在许多规范文件中都很有用,但在一个案例中我遇到了一个问题:

Error: Template parse errors:
    More than one component matched on this element.
    Make sure that only one component's selector can match a given element.
    Conflicting components: ButtonComponent,Mock

我不太清楚这个模拟和我的ButtonComponent是如何使用相同的选择器的,所以寻找替代方法将我引向了@raykrow的解决方案。

其他回答

使用Visual Studio编码时的警告(2013)

我已经浪费了4到5个小时来调试这个错误。我尝试了我在StackOverflow上找到的所有解决方案,但我仍然得到这个错误:不能绑定到“routerlink”,因为它不是一个已知的本机属性

注意,当你复制/粘贴代码时,Visual Studio有自动格式化文本的坏习惯。我总是从VS13得到一个小的瞬时调整(驼峰情况消失)。

这样的:

<div>
    <a [routerLink]="['/catalog']">Catalog</a>
    <a [routerLink]="['/summary']">Summary</a>
</div>

就变成:

<div>
    <a [routerlink]="['/catalog']">Catalog</a>
    <a [routerlink]="['/summary']">Summary</a>
</div>

这是一个很小的差异,但足以触发错误。最糟糕的是,每次我复制粘贴的时候,这个小差异总是避开我的注意。一次偶然的机会,我发现了这个小差异,并解决了它。

对于那些试图通过npm测试或ng测试使用Karma或其他任何东西来运行测试时发现这一点的人。您的.spec模块需要一个特殊的路由器测试导入才能构建。

import { RouterTestingModule } from '@angular/router/testing';

TestBed.configureTestingModule({
    imports: [RouterTestingModule],
    declarations: [AppComponent],
});

http://www.kirjai.com/ng2-component-testing-routerlink-routeroutlet/

一般来说,当你得到一个像不能绑定到'xxx'这样的错误,因为它不是一个已知的本机属性,最有可能的原因是忘记在指令元数据数组中指定一个组件或指令(或包含该组件或指令的常量)。这里的情况就是这样。

因为你没有指定RouterLink或常量ROUTER_DIRECTIVES -它包含以下内容:

export const ROUTER_DIRECTIVES = [RouterOutlet, RouterLink, RouterLinkWithHref, 
  RouterLinkActive];

-在指令数组中,然后当Angular解析

<a [routerLink]="['RoutingTest']">Routing Test</a>

它不知道RouterLink指令(它使用属性选择器RouterLink)。因为Angular知道a元素是什么,所以它假设[routerLink]="…"是a元素的属性绑定。但它随后发现routerLink不是元素的原生属性,因此抛出关于未知属性的异常。


我从来都不喜欢语法的模糊性。例如,考虑

<something [whatIsThis]="..." ...>

仅通过查看HTML,我们无法判断atisthis是什么

某物的固有属性 指令的属性选择器 某物的输入属性

我们必须知道哪些指令:[…]]在组件的/指令的元数据中指定,以便在心理上解释HTML。当我们忘记在指令数组中放入一些东西时,我觉得这种模糊性会使调试变得有点困难。

在我的例子中,我在App模块中导入了RouterModule,但在我的feature模块中没有导入。在我的EventModule中导入路由器模块后,错误就消失了。

    import {NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    import {EventListComponent} from './EventList.Component';
    import {EventThumbnailComponent} from './EventThumbnail.Component';
    import { EventService } from './shared/Event.Service'
    import {ToastrService} from '../shared/toastr.service';
    import {EventDetailsComponent} from './event-details/event.details.component';
    import { RouterModule } from "@angular/router";
    @NgModule({
      imports:[BrowserModule,RouterModule],
      declarations:[EventThumbnailComponent,EventListComponent,EventDetailsComponent],
      exports: [EventThumbnailComponent,EventListComponent,EventDetailsComponent],
       providers: [EventService,ToastrService]
    })
    export class EventModule {
        
     }

我非常感谢@raykrow的回答,当一个人只有在测试文件中有这个问题!这就是我遇到它的地方。

因为有另一种方法来做备份是很有帮助的,所以我想提一下这个技巧,它也同样有效(而不是导入RouterTestingModule):

import { MockComponent } from 'ng2-mock-component';
. . .
TestBed.configureTestingModule({
  declarations: [
    MockComponent({
      selector: 'a',
      inputs: [ 'routerLink', 'routerLinkActiveOptions' ]
    }),
    . . .
  ]

(通常情况下,我们会在<a>元素上使用routerLink,但对其他组件相应地调整选择器。)

我想要提到这个替代解决方案的第二个原因是,尽管它在许多规范文件中都很有用,但在一个案例中我遇到了一个问题:

Error: Template parse errors:
    More than one component matched on this element.
    Make sure that only one component's selector can match a given element.
    Conflicting components: ButtonComponent,Mock

我不太清楚这个模拟和我的ButtonComponent是如何使用相同的选择器的,所以寻找替代方法将我引向了@raykrow的解决方案。