gpt4 book ai didi

javascript - Angular 4错误类型错误: Cannot read property 'filter' of undefined

转载 作者:行者123 更新时间:2023-12-01 01:28:22 24 4
gpt4 key购买 nike

在我仍在公司工作的一个非常大的项目网络中,我在浏览器(Chrome 和 Firefox)中测试开发版本时出现了一些错误。有人可以帮助我吗?

//更新屏幕上的消息

    this.parametrosMensagemService.setMessage(this.alert)
this.pagerService.items = this.pagerService.items.filter(x => x.selecionado == "checked")
this.setPage(1)

Error log in Chrome Dev Tools

最佳答案

因为 this.pageService 上不存在属性 items

为了避免此错误,请尝试添加一些检查以获得更好的实践,例如 -

this.pagerService.items = this.pagerService && this.pagerService.items && this.pagerService.items.filter(x => x.selecionado == "checked")

关于javascript - Angular 4错误类型错误: Cannot read property 'filter' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53539848/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com