// 处理成base64位
getBase64ImageFile() {
const _this = this;
const fileSystemManager = wx.getFileSystemManager();
fileSystemManager.readFile({
filePath: filePath,
encoding: 'base64',
success(res) {
_this.setData({
backgroundurl: `linear-gradient(to bottom,transparent, rgba(255,255,255,0.1) 90%,rgba(255,255,255,1)) , url('data:image/jpg;base64,${res.data}')`,
});
},
fail(err) {
console.log(err);
},
});
},
解决办法将本地图片处理为base64 数据,background 本地图片支持base64为数据流和ur地址,这里处理为了base64位数据