标签: angular typescript
我正在尝试延迟执行此功能(如果没有结果则会返回),因为我需要留出时间让搜索查询功能在用户输入时完成自己的延迟。我怎么能在超时中包装这个函数?那会有用吗?
public get noResultsFound(): boolean { if (this.query && !this.hasResults) { return true; } }