분명히 Angular2의 베타 버전은 새로운 것보다 최신 버전이므로 많은 정보가 없지만 상당히 기본적인 라우팅이라고 생각하는 것을하려고합니다.
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으로 업그레이드 한 후 라우터 링크 지시문이 손상되었습니다 . 그러나 답변 중 하나의 "작동 예"는 베타 버전 코드를 기반으로합니다.이 코드는 여전히 작동하지만 여전히 작성한 코드가 작동하지 않는 이유를 알고 싶습니다.
모든 포인터는 감사하게받을 것입니다!
@Component({selector: "app"}) @View({templateUrl: "app.html", directives: [ROUTER_DIRECTIVES, RouterLink]})
directives: [ROUTER_DIRECTIVES]
[router-link]에서 [routerLink]로 추가 하고 변경 하면 더 이상 오류가 발생하지 않습니다.
directives: [ROUTER_DIRECTIVES]
.