摘要:
某些情况下组件内直接取实体属性会报如下错误 TypeError:undefined is not an object(evaluating 'this.props.userBaseVo.userName') 此时就需要用三目?: (this.props.userBaseVo ? this.props 阅读全文
摘要:
项目中我们经常会遇到标签的样式,那么我们如何自定义呢? 起初想直接使用Text设置间距不就可以了, 然而实测发现Text组件设置borderRadius、borderTopRightRadius等圆角是不会生效的,圆角需要设置在View上 所以我们的方案就是View包裹Text。用View设置圆角, 阅读全文