Angular 2 - 实例化路由器时出错 - (Router Outlet - > Router)

时间:2016-03-28 11:04:25

标签: angular angular2-routing

修改 这是我的傻瓜:plnkr.co/edit/qMBc5j62jQoBJLsFYgr4?p=preview

我正在使用TypeScript。

我收到以下错误:

  

实例化路由器时出错! (RouterLink - >路由器)。   和(RouterOutlet - >路由器)

我在此论坛上尝试了针对此问题的不同解决方案,包括在<base href="/">中添加/更改index.html或在引导程序中添加APP_BASE_HREF

我一直在使用官方Angular Plunker教程http://plnkr.co/edit/d8pewJf9kVqD3kTSvQmK?p=preview中的代码,它可以正常工作。

我的app.component.ts如下所示:

import { Component } from 'angular2/core';
import {LandingComponent} from './landing.component';
import { RouteConfig, ROUTER_DIRECTIVES, ROUTER_PROVIDERS } from 'angular2/router';

@Component({
 selector: 'my-app',
 template: `
    <h1>Hello</h1>
    <h1>{{title}}</h1>
    <nav>
      <a [routerLink]="['Landing']">Heroes</a>
    </nav>
    <router-outlet></router-outlet>
    `,
 directives: [ROUTER_DIRECTIVES],
 providers: [ROUTER_PROVIDERS]
})

@RouteConfig({
 {
    path: '/landing',
    name: 'Landing',
    component: LandingComponent,
    useAsDefault: true
}

 })

export class AppComponent { 
 title = 'Win Free!';
}

main.ts

import {bootstrap}    from 'angular2/platform/browser';
import {AppComponent} from './app.component';
bootstrap(AppComponent);

的index.html

<html>
 <head>

 <script>document.write('<base href="' + document.location + '" />');  </script>
      <title>Angular 2 QuickStart</title>
      <meta name="viewport" content="width=device-width, initial-scale=1">    
      <link rel="stylesheet" href="styles.css">
      <!-- 1. Load libraries -->
      <!-- IE required polyfills, in this exact order -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.35.0/es6-shim.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script>
    <script src="https://npmcdn.com/angular2@2.0.0-beta.12/es6/dev/src/testing/shims_for_IE.js"></script>
    <script src="https://code.angularjs.org/2.0.0-beta.12/angular2-polyfills.js"></script>
    <script src="https://code.angularjs.org/tools/system.js"></script>
    <script src="https://npmcdn.com/typescript@1.8.9/lib/typescript.js"></script>
    <script src="https://code.angularjs.org/2.0.0-beta.12/Rx.js"></script>
    <script src="https://code.angularjs.org/2.0.0-beta.12/angular2.dev.js"></script>
    <script src="https://code.angularjs.org/2.0.0-beta.12/router.dev.js"></script>


    <script>
      System.config({
        transpiler: 'typescript', 
        typescriptOptions: { emitDecoratorMetadata: true }, 
        packages: {'app': {defaultExtension: 'ts'}} 
      });
      System.import('app/main')
            .then(null, console.error.bind(console));
    </script>

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

谢谢。

1 个答案:

答案 0 :(得分:1)

providers: [ROUTER_PROVIDERS]移除AppComponentROUTER_PROVIDERS应由整个应用程序共享,只需将其添加到boostrap(AppComponent, [ROUTER_PROVIDERS])

如果你也在组件providers上添加它们,那么组件会获得一个新实例,这会阻止它们按预期工作。

<强>更新

在您的Plunker中(Edit ...之后的链接)仅在组件上ROUTER_PROVIDERS,但在bootstrap()中没有,但它应该是相反的方式。 @RouteConfig()中还存在一个语法问题,它需要一个数组但{}(而不是[])。

Working Plunker