uniapp 运行到 app 报错 Cannot read property ‘nodeName‘ of null

uniapp 运行到某一个页面,报错,h5没有问题

 Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/core
 at <GuiPagecustomHeader=truecustomFooter=trueisLoading=false ...>
 at <AxPagestatusbar=falsefixBar={"backTop":1}>
 at <FarmHome__pageId=2__pagePath="pages/home/farmHome"__pageQuery={"id":"1"} ...>
10:08:38.028 TypeError: Cannot read property 'nodeName' of null

经排查,是这边的数据没有就渲染了,导致报错,加上标记判断就行了,不能直接写state.fixedIcon;算是一个失误
uniapp 运行到 app 报错 Cannot read property ‘nodeName‘ of null_第1张图片

如果页面报这个错误,还有页面必须判断数据存在,或者dom不能在一个层级,或者dom多层就出错;也可能是template根节点加个注释,导致了整个项目部分文件编译报错。
uniapp 运行到 app 报错 Cannot read property ‘nodeName‘ of null_第2张图片

你可能感兴趣的:(uni-app,前端)