首页 前端知识 【报错】unhandled error during execution of watcher callback

【报错】unhandled error during execution of watcher callback

2024-02-03 12:02:45 前端知识 前端哥 804 791 我要收藏

文章目录

    • 报错
    • 分析
    • 解决

报错

unhandled error during execution of watcher callback

分析

在使用Echarts图标绘制数据时,报错:unhandled error during execution of watcher callback,提示的原因是因为当年数据还未拿到时就开始渲染Echarts图表,导致图表展现不出来报错

解决

在数据渲染之前先做一下非空判断
例如:

if(value){
	开始渲染数据
}

if(value !== undefined){
	开始渲染数据
}
转载请注明出处或者链接地址:https://www.qianduange.cn//article/1218.html
标签
评论
会员中心 联系我 留言建议 回顶部
复制成功!