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

1.2.0-beta.15,this.xxxFn.bind(this,"xxx") 绑定到组件的props上失效 #1705

Closed
fengwuxp opened this issue Dec 26, 2018 · 8 comments
Closed
Labels
question Further information is requested

Comments

@fengwuxp
Copy link

fengwuxp commented Dec 26, 2018

问题描述
在任意的组件中传入onClick的处理,例如this.xxxFn.bind(this,"xxx") ,期望xxxFn中能接收到 传入参数,这问题会导致自定义组件,以及taro-ui的组件使用失效或报错,原因是对应的处理方法没有接收到期望得到的参数。

复现步骤

// 这里可以贴代码
   goToVisit(e) {
        console.log("e", e);
        // Taro.navigateTo({url: "../tabs/index"});
    }
     <View   className='demo-text-1'
                   onClick={this.goToVisit.bind(this, 123)}>
                       <Image className='swiper-item' src={item.img} />
      </View>

期望行为
期望console.log打印输出123

报错信息
结果是打印输出的是点击事件对象event

系统信息

Taro v1.2 及以上版本已添加 taro info 命令,方便大家查看系统及依赖信息,运行该命令后将结果贴下面即可。

  • 操作系统: [e.g. Windows 10]
  • Taro 版本 [1.2.0-beta.15]
  • Node.js 版本 [ v10.14.2、v11.40]
  • 报错平台 [weapp]

补充信息
项目使用了typescript
我有单独测试过,如果按照如下代码:

   setTimeout(()=>{
            this.goToVisit.bind(this,1234)
        },1000);
   

的写法,goToVisit方法中能得到正确的参数

将版本切换到1.2.0-beta.2可以得到正确的结果

@taro-bot
Copy link

taro-bot bot commented Dec 26, 2018

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@yuche
Copy link
Contributor

yuche commented Dec 27, 2018

那你就升级你的版本啊,即便这个问题存在我们修复了,也不能覆盖1.2.0-beta.15,你只能装新版本

@fengwuxp
Copy link
Author

目前只有一个beta.16,没用

@yuche
Copy link
Contributor

yuche commented Dec 27, 2018

原来 1.2.0/1.2.1/1.2.2 都不算版本,他们是私生的吗

@luckyadam
Copy link
Member

cli 和依赖都升级到最新版本吧

@luckyadam luckyadam added question Further information is requested answered labels Dec 27, 2018
@taro-bot
Copy link

taro-bot bot commented Dec 27, 2018

Hello~

您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@wangruiStart
Copy link

同样的问题,依赖升级到最新1.2.2。问题依然没有修复

@geminiyu233
Copy link

这个问题确实是版本的原因,目前最新版本这个问题是存在的,需要切换一下版本。

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

No branches or pull requests

5 participants