1***@qq.com
1***@qq.com
  • 发布:2020-04-29 15:28
  • 更新:2020-04-29 15:28
  • 阅读:4097

微信小程序背景图不显示 / 小程序背景图转码base64

分类:uni-app

微信小程序设置设置本地背景图,大于40kb时需要手动转换成base64显示。

    computed: {  
        base64PageImg: function() {  
            let that = this;  
            let base64Img = uni.getFileSystemManager().readFileSync(that.pageImg, "base64");//转码  
            return 'data:image/png;base64,' + base64Img//拼接后返回  
        }  
    },
2 关注 分享
sonicsunsky Simon87

要回复文章请先登录注册