uniapp微信小程序的background-image使用
发表时间:2020-10-19
发布人:葵宇科技
浏览次数:195
我们知道微信小程序的图片不能使用本地图片,而必须使用网络图片
<view class="top-wrapper" style="backgroundImage:url(http{{imgURL})}">
在data绑定imgURL:require(‘static/image/order_detailbj.png’)
如上我使用的是通过view标签设置图片背景的
如果我们想通过image标签也可以
<image :src='http+imgURL'></image>
有人问http是什么,其实就是你微信小程序的图片存放在网络上的链接地址
成功案例
我的项目拼接完是这样的
<view class="top-wrapper" style="backgroundImage:url(https://test.linweiqian.vip{{imgURL})}">