tabbar的icon 先从网络上下载
tabbar的icon 不支持网络图片。那先从网络上下载,保存在本地,然后读取可以吗
tabbar的icon 不支持网络图片。那先从网络上下载,保存在本地,然后读取可以吗
别骗我啊。
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
})
}
})
不可以的啊