-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
函数传参无法取到 #1820
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
是的, 我什么方法都试了, 比如删除 node_modules , npm update, 还是取不到正常的值 |
@hyyqcweb @ZhiGang-Fang Taro 1.2.4 版本上尝试,没有问题,能正确取值。 你们的问题肯定是 CLI 和依赖版本不一致导致的,可以删掉 node_modules 后手动 npm install 试试。 import Taro, { Component } from '@tarojs/taro'
import { View } from '@tarojs/components'
export default class PageView extends Component {
handleClick = (item) => {
console.log(item)
}
render() {
return (
<View>
{[1,2].map((t, r) => (
<View key={r} onClick={this.handleClick.bind(this, t)}>
{t}
</View>
))}
</View>
)
}
} |
这个问题怎么解决的呢?我用的taro版本是1.2.12 |
@wswax 要么升级taro版本依赖(必须统一), 要么降级taro版本(我是降级处理了) |
@hyyqcweb 嗯我刚刚升级了。 Taro v1.2.13 Taro CLI 1.2.13 environment info: |
@wswax CLI 和依赖要保持一致,不然又可能出现其它问题。你现在分别是 1.2.13 和 1.2.12 |
@Chen-jj 嗯,多谢提醒。 Taro CLI 1.2.13 environment info: |
问题描述
事件绑定传参, 取不到参数, 取到的是 arguments对象
复现步骤
期望行为
可以正常的拿到事件函数的参数
报错信息
系统信息
补充信息
最新依赖:
The text was updated successfully, but these errors were encountered: