uniapp(微信小程序)异常:Failed to load local image resource /pages/xxx/true

2,205 阅读1分钟

错误信息如下:

image.png

[渲染层网络层错误] Failed to load local image resource /pages/center/true 
 the server responded with a status of 500 (HTTP/1.1 500 Internal Server Error) 
(env: Windows,mp,1.06.2301160; lib: 2.28.1)

原因:

image组件src属性为空字符串

<image src="" mode="widthFix"></image>

其中 /pages/xxx/true 显示异常出现位置,
比如:/pages/index/index 路径下页面包含组件 <image src="" mode="widthFix"></image>,那么异常信息显示 Failed to load local image resource /pages/index/true

解决方式:

删除该组件