页面背景无法加载本地图片如何解决?
之前在wxss中给page设置background-image来设置页面背景,昨天升级后编译报错,提示:VM3087:2 pages/index/index.wxss 中的本地资源图片无法通过 WXSS 获取,可以使用网络图片,或者 base64,或者使用<image/>标签。
请问如何解决。
page{
background-image: url("…/…/images/xxx.jpg");
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
}