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

touch事件的event对象类型有问题 #4798

Closed
zhongzhong0505 opened this issue Nov 10, 2019 · 6 comments
Closed

touch事件的event对象类型有问题 #4798

zhongzhong0505 opened this issue Nov 10, 2019 · 6 comments

Comments

@zhongzhong0505
Copy link

问题描述
[问题描述:站在其它人的角度尽可能清晰地、简洁地把问题描述清楚]
MovableView的onTouchEnd的回调事件里面,event对象类型有误。

企业微信截图_a91244ca-89f4-4a5a-8fd5-39e98833c5ee

WX20191110-103023@2x

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

  1. 引入taro的MovableView组件
  2. 监听onTouchEnd的事件
  3. 查看event对象属性
// 这里可以贴代码
// 点击链接查看如何插入代码:
// https://coding.net/help/doc/project/markdown.html#i-5

// ```js
// 代码放这里(前后的 "```" 有助 Mardown 整理代码格式和加入代码高亮)
handlerTouchEnd(e: ITouchEvent) {
    
  }
<View className="movable-item-container">
        <MovableArea className="movable-item-area" style={areaStyle}>
          <MovableView
            className="movable-item-view"
            direction="horizontal"
            damping={100}
            x={x}
            inertia
            outOfBounds
            onChange={this.handlerChange.bind(this)}
            onTouchStart={this.handlerTouchStart.bind(this)}
            onTouchEnd={this.handlerTouchEnd.bind(this)}>
            {this.props.children}
          </MovableView>
        </MovableArea>
        <View className="movable-item-op">{renderOp()}</View>
      </View>
// ```

// 提供完整可复现的代码和整理好代码格式,有助于我们快速定位问题,节省你我时间。
// 代码提供不全或代码格式混乱的 issues 【有可能被忽略】,烦请各位注意。

期望行为
跟标准的事件对象属性一致

报错信息

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

系统信息

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

  • 操作系统: [e.g. Windows 10]
  • Taro 版本 [e.g. v.0.0.64]
  • Node.js 版本 [e.g. v9.0.0]
  • 报错平台 [h5, weapp]

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

@taro-bot
Copy link

taro-bot bot commented Nov 10, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@shenghanqin
Copy link
Collaborator

是你提及的[h5、weapp]还是什么平台?

@zhongzhong0505
Copy link
Author

\

是你提及的[h5、weapp]还是什么平台?

weapp,微信模拟器里面

@shenghanqin
Copy link
Collaborator

那试一试微信小程序的真机的console是不是有问题呢?

比如,我的小伙伴在模拟器上写好了音频播放器,但是在微信小程序上可能还是会碰到很多其他不一样的表现,或者bug。这种触摸事件优先以真机效果为准。

@zhongzhong0505
Copy link
Author

不用taro提供的类型是没有问题,在真机上,而且taro这个跟标准的touchevent都不一样,微信是用的标准的,这就很让人费解了

@luckyadam
Copy link
Member

是说 taro 提供的类型和小程序不一致么,如果不一致可以提交 pr 来修改

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

4 participants