0
点赞
收藏
分享

微信扫一扫

NG Set & Get

南陵王梁枫 2022-04-05 阅读 61

Set & Get

组件传值,监听数据修改;

// 组件接收一个userId值
<app-user-list [userId]="userId"></app-user-list>
export class UserListComponent {
  // ...
  @Input() userId: number;
  // ...
}
export class UserListComponent {
  private _userId: number;

  @Input()
  set userId(userId: number) {
    this._userId= userId;
  }

  get userId(): number{ return this._userId; }
}
举报

相关推荐

get和set

get set (java)

set bit and get bit

redis set集合 get

class中的get set

0 条评论