MorJS 支付宝props 必须完整
- 问题表现: 在支付宝小程序中,你可以在
props
中没有定义某个属性,但是在实际使用中直接引用this.props.xx
,但是由于在微信小程序中需要对props
进行分析并动态赋值,因此必须要有完整的props
列表 - 解决方案: 将所有使用到的
props
属性都声明在props
中
props
中没有定义某个属性,但是在实际使用中直接引用this.props.xx
,但是由于在微信小程序中需要对props
进行分析并动态赋值,因此必须要有完整的props
列表props
属性都声明在props
中