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

微信小程序与支付宝小程序兼容问题 #3718

Closed
lxlneo opened this issue Jul 8, 2019 · 7 comments
Closed

微信小程序与支付宝小程序兼容问题 #3718

lxlneo opened this issue Jul 8, 2019 · 7 comments

Comments

@lxlneo
Copy link

lxlneo commented Jul 8, 2019

问题描述
使用Taro1.3.5 开发支付宝小程序和微信小程序Mapinput组件差异没有兼容,开发者得针对各个平台分别处理

复现步骤

//微信小程序
<Map
ontap={this.xxxxx}
onregionchange={this.xxx}
onmarkertap={this.xxx}
>
<cover-view/>
<cover-image/>
</Map>
//input 
<Input  
onChange={this.xxxx}
 />
//支付宝小程序
<Map
onTap={this.xxx}
onMarkerTap={this.xxx}
onRegionChange={this.xxx}
>
</Map>
<cover-view/>
<cover-image/>
//input 
<Input  
onInput={this.xxxx}
 />

组件代码结构有差异,方法名称有差异,Taro能不能把这一层抹平啊~

期望行为
期望用Taro编写的时候只用书写一套,Taro能根据平台不同做好处理

系统信息

  • 操作系统: [e.g. macOS 10.14.5]
  • Taro 版本 [e.g. v.1.3.5]
  • Node.js 版本 [e.g. v10.16.0 ]
@taro-bot
Copy link

taro-bot bot commented Jul 8, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@luckyadam
Copy link
Member

都用 onInput 不行么

@jinjinjin0731
Copy link
Contributor

Input 应该都是用 onInput 的。 onChange 事件在微信小程序上用是可以用,但是官方文档并没有标注。 建议不使用,统一都用 onInput 吧

@taro-bot
Copy link

taro-bot bot commented Jul 10, 2019

Hello~

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

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

Good luck and happy coding~

@lxlneo
Copy link
Author

lxlneo commented Jul 12, 2019

Map组件的呢?这才是重点啊~

@luckyadam
Copy link
Member

Map 组件都按这么写

<Map
onTap={this.xxx}
onMarkerTap={this.xxx}
onRegionChange={this.xxx}
>

@lxlneo
Copy link
Author

lxlneo commented Jul 14, 2019

非常感谢
验证了如下写法可以通用

<Map
onTap={this.xxx}
onMarkerTap={this.xxx}
onRegionChange={this.xxx}
>

<Input  
onInput={this.xxxx}
 />

希望可以文档可以详细一些,比如组件文档

@lxlneo lxlneo closed this as completed Jul 14, 2019
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