1.在react中如何获取元素的offsetX呢?我的思路是通过this.state.offsetX获取,但是this确是null2.react中可以初始化一个组件的某些状态,但是我这样写getInitialState在控制台却出现了warning错误。提示如下图:具体代码如下
2 回答
互换的青春
TA贡献1797条经验 获得超6个赞
getInitialState 是 ES5 里的写法.
在 ES6 里, 应该把 state 初始化放到 constructor 里.
class Demo extends Component{ constructor(){ super(); // 必须先调用super, 后面才能用 this this.state = {} } }
MMTTMM
TA贡献1869条经验 获得超4个赞
1、es6写法下。初始化默认state是在constructor中进行
constructor() { super(); this.state = { }}
2、事件回调函数中如果要用this,需要手动bind
// 方法1this.moveElment.bind(this); // 方法2moveElement = event => { } // 方式3<div onMouseEnter={() => this.moveElement}></div>
添加回答
举报
0/150
提交
取消