wx.previewImage真机调试无效,回调不触发?有没有大神遇到过
在Taro中使用的时候,开发工具可以生效,但是真机没有效果,换了个地址也是这样子 原代码:
const imgClickHandle = (item: string) => {
console.log('object')//真机也触发了
Taro.previewImage({
current: item,
urls: scrollData.list,
})
}
换路径测试
Taro.previewImage({
current: 'https://storage.360buyimg.com/channel2022/jd_home/0.0.2/assets/sprite/header/sprite.png',
urls: ['https://storage.360buyimg.com/channel2022/jd_home/0.0.2/assets/sprite/header/sprite.png']
})