Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image组件的onClick事件在小程序中没有问题, 但是在h5中点击事件没有反应 #794

Closed
snycloud opened this issue Oct 10, 2018 · 8 comments
Assignees

Comments

@snycloud
Copy link

snycloud commented Oct 10, 2018

问题描述
Image组件的onClick事件在小程序中没有问题, 但是在h5中点击事件没有反应
View组件也试过了,同样的问题

复现步骤
[复现问题的步骤]

  1. Image组件的onClick事件在小程序中没有问题, 但是在h5中点击事件没有反应
  2. View组件也试过了,同样的问题
  3. 在h5端没有报任何错误信息

[或者可以直接贴源代码,能贴文字就不要截图]

// 这里可以贴代码
bannerClick = (url, even) => {
    console.log(url);
    Taro.navigateTo({
      url: url
    });
  };

  render() {
    return (
      <Swiper
        indicatorDots={this.props.indicatorDots}
        indicatorColor={this.props.indicatorColor}
        indicatorActiveColor={this.props.indicatorActiveColor}
        autoplay={this.props.autoplay}
        interval={this.props.interval}
        duration={this.props.duration}
        current={this.props.current}
        circular={this.props.circular}
        style={this.props.customStyle}
        skipHiddenItemLayout={this.props.skipHiddenItemLayout}
        displayMultipleItems={this.props.displayMultipleItems}
        vertical={this.props.vertical}
        onChange={this.props.onChange}
        onAnimationfinish={this.props.onAnimationfinish}
      >
        {this.props.imgUrls.map((item, index) => {
          return (
            <SwiperItem key={index} >
              <Image src={item.img} style={this.props.customImageStyle} onClick={this.bannerClick.bind(this, item.url)} />
            </SwiperItem>
          )
        })}
      </Swiper>
    )
  }

期望行为
系统onClick事件可在h5端正常触发

报错信息

[这里请贴上你的完整报错截图或文字]

系统信息

  • 操作系统: macOS High Sierra 10.13.6 (17G65)
  • Taro 版本 1.0.7
  • Node.js 版本 v10.10.0

补充信息
[可选]
[根据你的调查研究,出现这个问题的原因可能在哪里?]

@jinjinjin0731
Copy link
Contributor

hao 稍后我复现一下

@snycloud
Copy link
Author

请问这个bug,什么时候会修复?

@jinjinjin0731
Copy link
Contributor

现在正在修~ 这两天内修复

@snycloud
Copy link
Author

我刚刚更新了一下依赖版本, 似乎还是不行啊

@jinjinjin0731
Copy link
Contributor

jinjinjin0731 commented Nov 12, 2018

@CozySnail 我看了一下。是还有点问题,这个尽快搞定。

@snycloud
Copy link
Author

好的辛苦啦

@jinjinjin0731
Copy link
Contributor

已经修复,发版之后更新最新版即可

@snycloud
Copy link
Author

好的谢谢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants