5 回答
繁花如伊
TA贡献2012条经验 获得超12个赞
<pre t="code" l="js">constructs() {
super()
this.setState({
name: null
})
}
render() {
const {name} = this.state
}看这样一个例子,构造函数定义的是state的key,value,而render是读取叫做name的值。因为state是只读的,所以用const来定义,当然你也可以用let、var。
Helenr
TA贡献1780条经验 获得超4个赞
方法1: 在render中根据条件是否渲染组建 {condition==true?:null}; 方法2: 就像网页开发一样 父容器 overflow:"hidden" 子组件隐藏 left:-999;position:absolute;
添加回答
举报
0/150
提交
取消