angular绑定数据
Angular 中使用{{}}绑定业务逻辑里面定义的数据
<h1> Welcome to {{ title }}! /*引入title*/ </h1>
export class AppComponent { /*title 参数数据*/ title = 'Angulardemo01'; }
最后,关注【码上加油站】微信公众号后,有疑惑有问题想加油的小伙伴可以码上加入社群,让我们一起码上加油吧!!!
Angular 中使用{{}}绑定业务逻辑里面定义的数据
<h1> Welcome to {{ title }}! /*引入title*/ </h1>
export class AppComponent { /*title 参数数据*/ title = 'Angulardemo01'; }