我正在嘗試遵循Angular 2網站的官方教程。 This tutorialAngular 2未使用的標籤錯誤
我得到的原子IDE下列錯誤:
未使用label.at 8號線第1欄
不能分配給「英雄」,因爲它不是一個variable.at線8山坳7
以下是我的代碼:
import { Component } from '@angular/core';
export class Hero {
id: number;
name: string;
}
hero: Hero = {
id: 1,
name: 'Windstorm'
};
@Component({
selector: 'my-app',
template: `<h1>{{title}}</h1>
<h2>{{hero.name}} details!</h2>`
})
export class AppComponent {
title = 'Tour of Heroes';
hero = 'Windstorm';
}
而結果:
我做了什麼錯?幫助表示讚賞。
由它的外觀英雄是組件中的字符串屬性,但您正試圖在模板中顯示hero.name。 – toskv