React&AntD学习笔记(二)

2018-11-19  本文已影响0人  测试你个头

通过ESLint能让开发人员更快的掌握ES6的一些语言特点,主要讲下ESLint的一些常见容易犯的rule

在对之前开发的前端代码进行ESLint检查是,碰到最多的4类问题是:

// ES6之前常规的写法
const child = this.state.child

// ES6写法
const { child } = this.state
修改前
修改后
// 修改前
{
     onClickHandler = e => {
         let { child } = this.state;
         console.log(child);
     }
     ......
}

// 修改后
{
     onClickHandler = e => {
         const { child } = this.state;
         console.log(child);
     }
     ......
}

上一篇下一篇

猜你喜欢

热点阅读