這是我的組件的代碼,而不是任何版本。我只是在瀏覽器中獲得空白控制檯。Angular2:爲什麼我的組件的console.log沒有記錄任何東西
export class AssetsComponent {
s = 'Hello2';
constructor() {
this.s = 'ds';
console.log(this.s); <--- nothing
console.log('test'); <--- nothing
console.log(s); <--- breaks the compiler
}
}
它沒有加載然後。你在哪裏使用它?參考嗎? –