前端常见错误记录

132 阅读1分钟

长期更新,记录工作中的坑。。。

  • Cannot read properties of undefined (reading 'style')
    • 错误示例
      • [Vue warn]: Error in callback for immediate watcher "": "TypeError: Cannot read property 'style' of undefined"
      • Cannot read properties of undefined (reading 'style')
    • 如果报这个错误,同时页面中使用了el-table标签,检查一下height属性有没有可能设置了'',如果设置了'',则会报这个错。参考elementui源码,如果设置'',没有校验住,会直接赋值。
      • image.png
    • 如果页面,没有使用el-table标签,检查一下有没有通过ref的形式更改长度,或者宽度等属性,如果更改的时候传入了'',同样会报这个错误。