I am relatively new to both Angular2 and typescript. Since typescript is a superset of javascript, I'd expect functions like console.log
to work. console.log
works perfectly in .ts
files when outside a component class but does not work as I'd expect from inside the component class.
// main.ts
import { Component } from '@angular/core';
console.log("Hello1"); //1. This works perfectly
@Component({..)
export class App {
s: string = "Hello2";
// console.log(s); //2. This gives compilation error (when uncommented)
// Error: Function implementation is missing or not immediately following the declaration.
}
Is there anything that I am missing?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…