-
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
支付宝小程序, 组件嵌套props不传递 #3671
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
CC @Chen-jj |
@qiliangya 提供代码吧。 |
A页面 <View className="container">
<Test1 demo="測試1"/>
<Test2 demo="123"/>
</View> Test1组件 <View>
<View>{this.props.demo}</View>
<Test2 demo="我是測試2"/>
</View> Test2组件 <View>
<View>test2被引入</View>
<View>{this.props.demo}</View>
</View> test2并未接收到 来着test1组件的props 问题补充, 我的代码在同事的电脑上 能正常跑。 |
@qiliangya 依赖和 CLI 保持版本一致。 |
@Chen-jj 版本均为1.3.4。 刚试了下 因为我在项目启动的时候区分了环境, 重新设置了NODE_ENV的 如果NODE_ENV为test 就会出这个问题, 但如果NODE_ENV是别的值就不会。 这个也能影响? 不能设置为test吗 |
@qiliangya 不会影响 |
@Chen-jj 现在就是我运行 test命令 就出现我说的上述问题, 运行dev命令 就不会 一切正常 代码 就是问题开头的那些, 并未做环境区分。。 此外 taro-ui引入组件,只要是有嵌套的组件 在test环境下 也会出现这种问题。 dev环境不会 |
@qiliangya 提供完整的 demo 项目我看看吧 |
@qiliangya 的确,NODE_ENV 为 test 时编译时没有给 xml 加上 |
Hello~ 您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
问题描述
在支付宝小程序中组件嵌套无法传递props
复现步骤
期望行为
组件嵌套传递props能正常
系统信息
补充信息
一开始我是使用taro-ui,并发现在支付宝小程序上, AtActivityIndicator组件无法设置loading的大小issues也是无法接收到props的问题。 但在微信小程序上没有异常
现在自己封装的组件也会出问题
The text was updated successfully, but these errors were encountered: