TypeError: undefined is not an object (evaluating 'o.type.name')

uni-app启动报错,造成白屏,H5端正常,小程序和APP报错如下:

reportJSException >>>> exception function:createInstanceContext, exception:white screen cause create instanceContext failed,check js stack ->TypeError: undefined is not an object (evaluating 'o.type.name')
getTemplateInfo== template md5 d4747f701467e54e45cbae7bc3c29e61 length 17231462 base64 md5 1HR/cBRn5U5Fy657w8KeYQ== response header {"templateSourceBase64MD5":["1HR/cBRn5U5Fy657w8KeYQ=="],"templateSourceMD5":["d4747f701467e54e45cbae7bc3c29e61"]}

原因:

TypeError: undefined is not an object (evaluating 'o.type.name')_第1张图片

解决方式:

首先我们需要定位到错误在哪里,直接运行到HbuilderX运行到真机无法定位到问题出自哪一个文件,我们需要点击控制台的debug图标,如下:

TypeError: undefined is not an object (evaluating 'o.type.name')_第2张图片

打开真机调试视图之后,看到如下报错信息就能够定位到问题文件:

TypeError: undefined is not an object (evaluating 'o.type.name')_第3张图片

找到对应的文件

TypeError: undefined is not an object (evaluating 'o.type.name')_第4张图片

保存,问题解决。

uni-app H5端容错率较高,APP端和小程序端语法更严格,报的错误很难定位到问题点,写组件的时候一定要注意给属性声明类型。

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