加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

angular – 为什么在组件内调用detectChanges()不会更新值,但是

发布时间:2020-12-17 17:34:08 所属栏目:安全 来源:网络整理
导读:我正在尝试自动从 mat-autocomplete ...中的选项集中选择第一个值. export class ExampleComponent implements OnInit,AfterViewInit {@ViewChildren('auto') matAutocomplete: QueryListany;constructor(private cdr: ChangeDetectorRef) { }ngAfterViewIni
我正在尝试自动从< mat-autocomplete ...>中的选项集中选择第一个值.

export class ExampleComponent implements OnInit,AfterViewInit {

@ViewChildren('auto') matAutocomplete: QueryList<any>;

constructor(private cdr: ChangeDetectorRef) { }

ngAfterViewInit() {
    this.foundItemsList.changes.subscribe(options => {
        // ---> This simply works!
        setTimeout(() => this.matAutocomplete.first._keyManager.setFirstItemActive(),0);

        // ---> This doesn't works?! No error shown,it just seems that the above function isn't called at all. 
        this.matAutocomplete.first._keyManager.setFirstItemActive()
        this.cdr.detectChanges();
    });
}

https://github.com/angular/material2/blob/master/src/lib/autocomplete/autocomplete.ts

AFAIK,detectChanges做的是检查当前组件及其所有子组件的变化检测器,对吗?但似乎它在上面的场景中不起作用.

解决方法

this.cdr.detectChanges()仅运行当前组件(和后代)的更改检测.如果setFirstItemActive()导致其他地方的更改,则不包括此内容. setTimeout()或zone.run(…)或ApplicationRef.tick()导致为整个应用程序运行更改检测,因此不仅覆盖当前组件的每个绑定.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读