我有一个字符串变量,例如Angular 组件中的createId:string。ts如何在此变量更改值时添加断点?
createId:string
cl25kdpy1#
一种方法是在setter中添加断点:
public set createdId(val:string){ debugger; this._createdId=val; } public get createdId(){ return this._createdId; }
1条答案
按热度按时间cl25kdpy1#
一种方法是在setter中添加断点: