tabbar的icon 先从网络上下载
发布于 6 年前 作者 lima 17635 次浏览 来自 问答

tabbar的icon 不支持网络图片。那先从网络上下载,保存在本地,然后读取可以吗

5 回复

你是要尝试还是你们的需求就是这样,

你好,不可以的,只支持代码包里的路径

别骗我啊。

wx.downloadFile({

url: https://lc-dabpzsry.cn-n1.lcfile.com/0896d9ba9d62db11a5e4.png,

success: function (res) {

console.log(res.tempFilePath);

wx.setTabBarItem({

index: 1,

text: ‘测试’,

iconPath: res.tempFilePath,

selectedIconPath: res.tempFilePath

})

}

})

不可以的啊

回到顶部