Tag "对象循环报错" 相关话题

经验总结

避免“cannot read property of undefined”错误的几种方法

Deshun 发布于 3年前 (2021-09-26) 2178℃ 评论(0) 赞 (0)

前端在开发中肯定遇到过 Uncaught TypeError: Cannot read property 'type' of undefined. 错误。这是一个可怕的错误,数据正常的情况是可以正常运行的,如果某个 API 返回了意外的空值,就会抛出这个错误,影响程序的正常运行。今天就讨论一下如何从源头阻止这个问题的发生。工具库下面简单例举两个:lodash 里的 _.get(文档...