Angular2例外:既知のネイティブプロパティではないため、「routerLink」にバインドできません


277

明らかに、Angular2のベータ版は新しいものよりも新しいため、そこにはあまり情報がありませんが、かなり基本的なルーティングであると私が考えていることを実行しようとしています。

https://angular.io Webサイトのクイックスタートコードやその他のスニペットをハッキングすると、次のファイル構造になります。

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へのアップグレード後にrouter-linkディレクティブが壊れました。ただし、回答の1つにある「動作する例」は、ベータ前のコードに基づいています。これはまだ機能する可能性がありますが、作成したコードが機能しない理由を知りたいのですが。

どんなポインタでもありがたいです!


4
他の質問は何か違うものがありますdirectives: [ROUTER_DIRECTIVES]
Eric Martinez

1
ROUTER_DIRECTIVESを使用しても同じエラーが発生します。@Component({selector: "app"}) @View({templateUrl: "app.html", directives: [ROUTER_DIRECTIVES, RouterLink]})
2015

8
directives: [ROUTER_DIRECTIVES][router-link]を追加して[router-link]に変更すると、エラーは発生しなくなりました。
2015

回答:


392

> = RC.5

インポートRouterModule も参照してくださいをhttps://angular.io/guide/router

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

> = RC.2

app.routes.ts

import { provideRouter, RouterConfig } from '@angular/router';

export const routes: RouterConfig = [
  ...
];

export const APP_ROUTER_PROVIDERS = [provideRouter(routes)];

main.ts

import { bootstrap } from '@angular/platform-browser-dynamic';
import { APP_ROUTER_PROVIDERS } from './app.routes';

bootstrap(AppComponent, [APP_ROUTER_PROVIDERS]);

<= RC.1

コードがありません

  @Component({
    ...
    directives: [ROUTER_DIRECTIVES],
    ...)}

ディレクティブのように、routerLinkまたはrouter-outletコンポーネントに知らせずにディレクティブを使用することはできません。

ディレクティブ名はAngular2で大文字と小文字が区別されるように変更されましたが、カスタム要素の名前にaが必要なweb-components仕様と互換性がある-よう<router-outlet>に、要素は引き続き名前で使用され-ます。

グローバルに登録する

ようにするにはROUTER_DIRECTIVES、グローバルに利用できる、このプロバイダを追加bootstrap(...)

provide(PLATFORM_DIRECTIVES, {useValue: [ROUTER_DIRECTIVES], multi: true})

そうすればROUTER_DIRECTIVES、各コンポーネントに追加する必要がなくなります。


1
はい、次のようにアプリをブートストラップするときに複数のディレクティブを割り当てることもできます:provide(PLATFORM_DIRECTIVES, {useValue: [ROUTER_DIRECTIVES, FORM_DIRECTIVES, ETC...], multi: true})
Pardeep Jain

1
そうですFORM_DIRECTIVESPLATFORM_DIRECTIVES、デフォルトですでに含まれています。
ギュンターZöchbauer

2
これは素晴らしかった、ありがとう。すべて一緒にそれを置くしようとしたとき、私はまた、これは有用であることが判明:stackoverflow.com/questions/34391790/...
ジェフ

ここで馬鹿げた質問かもしれませんが、RC.1、RC.2は何ですか?角度2.1.2を使用していますが、どのRCですか?
Jian Chen

1
@AlexanderMillsなぜ古いandwersがあなたを怖がらせるのですか?古い答えは戦いテストされたので、非常に信頼できる; P
ギュンター・Zöchbauer

116

経由しているためテストを実行しようとしたときにこれを見つける人々のためnpm testか、ng testカルマまたは任意の他を使用して。.specモジュールをビルドするには、特別なルーターテストインポートが必要です。

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

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

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


2
これは素晴らしいキャッチです!私のプロジェクトは通常の操作で何の問題もありませんでしたspec。これを追加する必要があったのはファイル内でした。@raykrowに感謝!
kbpontius 2017年

1
角度4でも動作することが確認されています。これをありがとう!
JCisar 2017年

これは受け入れられた答えでなければなりません。受け入れられた答えは間違っていRouterModuleます。インポートするときにforRoot、モジュールを満たすために呼び出す必要があり、次に、提供する必要がBASE_HREFあります...
Milad

1
これがAngular 5+と異なるかどうかはわかりますか?Can't bind to 'active' since it isn't a known property of 'a'.いくつかの単体テストで同様のエラーが発生し、をインポートしましたRouterTestingModule
スチュアートアップデグレイブ

25

Visual Studio(2013)でコーディングする際の注意事項

このエラーをデバッグしようとして、4〜5時間を無駄にしました。StackOverflowで手紙で見つけたすべての解決策を試しましたが、それでもこのエラーが発生しました。Can't bind to 'routerlink' since it isn't a known native property

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>

それは小さな違いですが、エラーをトリガーするのに十分です。醜い部分は、この小さな違いがコピーして貼り付けるたびに私の注意を回避し続けたことです。たまたま、この小さな違いを見つけて解決しました。


4
ありがとうございます。「routerlink」と「routerLink」の違いについてお話しいただけましたでしょうか。Angular 2は "routerLink"が存在することを期待していますが、 "routerlink"を検出します
Narendran Solai Sridharan '21 / 01/17

どういうわけか、いくつかのチュートリアルでは、ダッシュを挟んで「ルーターリンク」を使用したチュートリアルがありました。しかしrouterLinkは正しいバージョンです。
windmaomao 2017

同じことがwebpackとhtml-minifierでも発生しますが、本番環境でのみ発生します。html-loaderオプションにcaseSensitive:trueを追加します。github.com/
SamanthaAdrichem/webpack

12

V5以上の場合

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

const appRoutes: Routes = [
  {path:'routing-test', component: RoutingTestComponent}
];

@NgModule({
  imports: [
    RouterModule.forRoot(appRoutes)
    // other imports here
  ]
})

成分:

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

<V5の場合

ie RouterLinkとしても使用できますdirectivesdirectives: [RouterLink]。それは私のために働いた

import {Router, RouteParams, RouterLink} from 'angular2/router';

@Component({
    selector: 'my-app',
    directives: [RouterLink],
    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},
])

これはもう適用されないと思います(Angular 5)など
Alexander Mills

10

一般に、のようなエラーが発生した場合Can't bind to 'xxx' since it isn't a known native property、最も可能性の高い原因は、directivesメタデータ配列でコンポーネントまたはディレクティブ(またはコンポーネントまたはディレクティブを含む定数)を指定し忘れていることです。ここがそうです。

RouterLinkまたは定数を指定しなかったため、次のROUTER_DIRECTIVESものが含まれています

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

directives配列で、Angularが解析するとき

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

RouterLinkディレクティブ属性セレクターを使用routerLink)については認識しません。Angularはa要素が何であるかを知っているので、それが要素のプロパティバインディングで[routerLink]="..."あると想定していますa。しかし、それはそれrouterLinka要素のネイティブプロパティではないことを検出し、不明なプロパティに関する例外をスローします。


構文あいまいさを本当に気にしたことはありません。つまり、検討する

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

場合だけでHTMLを見て、私たちは言うことができないwhatIsThisです

  • のネイティブプロパティ something
  • ディレクティブの属性セレクター
  • 入力プロパティ something

directives: [...]HTMLを精神的に解釈するためには、コンポーネント/ディレクティブのメタデータでどちらが指定されているかを知る必要があります。そして、directives配列に何かを入れるのを忘れたとき、このあいまいさがデバッグを少し難しくしているように感じます。


7

あなたはあなたのモジュールにいます

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

モジュールRouteModuleをエクスポートする必要があります

例:

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

このモジュールをインポートするすべてのユーザーの機能にアクセスできるようにします。


5

私は上記のすべての方法を試しましたが、1つの方法でうまくいくわけではありません。

私はこの方法を試しました:

HTMLの場合:

<li><a (click)= "aboutPageLoad()"  routerLinkActive="active">About</a></li>

TSファイル:

aboutPageLoad() {
    this.router.navigate(['/about']);
}

4

私の場合、RouterModuleをAppモジュールにインポートしましたが、機能モジュールにはインポートしていません。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 {

 }

3

単体テスト中にこのエラーが発生した場合は、これを書いてください。

import { RouterTestingModule } from '@angular/router/testing';
beforeEach(async(() => {
  TestBed.configureTestingModule({
   imports: [RouterTestingModule],
   declarations: [AppComponent],
 });
}));

0

テストファイルでのみこの問題が発生したときの@raykrowの回答に本当に感謝しています。それは私がそれに遭遇した場所です。

バックアップとして何かを行う別の方法があると便利なことが多いので、(インポートする代わりにRouterTestingModule)機能するこの手法に言及したいと思います。

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

(通常、要素で使用routerLink<a>ますが、他のコンポーネントに合わせてセレクターを調整します。)

私がこの代替ソリューションに言及したいと思った2番目の理由は、いくつかのスペックファイルでうまく機能したものの、1つのケースで問題に遭遇したことです。

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のソリューションを見つけました。



-4

私の解決策は簡単です。[routerLink]ではなく[href]を使用しています。[routerLink]のすべてのソリューションを試しました。私の場合、どれも機能しません。

これが私の解決策です:

<a [href]="getPlanUrl()" target="_blank">My Plan Name</a>

次に、getPlanUrl関数をTSファイルに書き込みます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.