tuture-dev / ultra-club

《Taro 多端小程序开发大型实战》源代码

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LoginForm组件中发现的一个问题

lishaoqun opened this issue · comments

commented

问题描述

src/components/LoginForm.jsx中的一段代码 L29 ,代码如下:

function onImageClick() {
    Taro.previewImage({
      urls: [props.files[0].url],
    })
}

其中 urls: [props.files[0].url] 应该是 urls: [files[0].url]

@lishaoqun 你好,这里我们使用了 React Hooks 哦,在 LoginForm.jsx 组件中定义了 files 的 state,所以可以直接使用