<view wx:for='{{name_tel}}'>
<label for='{{item.id}}' style="background-image:url({{item.imgUrl}})"></label>
<input id='{{item.id}}' type='text' placeholder='{{item.placeholder}}'></input>
</view>
这里label的背景图地址找不到,报错为:
Failed to load local image resource /pages/index/images/smapp_name.png
the server responded with a status of 404 (HTTP/1.1 404 Not Found)
控制台看label结构为:
<labelclass="label-img"for="peopleName"style="background-image:url(images/smapp_name.png)"></label>
解决了,是图片地址的问题,图片地址加上../../就可以了