美文网首页
React&AntD学习笔记(二)

React&AntD学习笔记(二)

作者: 测试你个头 | 来源:发表于2018-11-19 19:49 被阅读0次

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

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

    • eslint:react/destructuring-assignment:需要使用变量解构方式对变量进行赋值
    // 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);
         }
         ......
    }
    
    

    相关文章

      网友评论

          本文标题:React&AntD学习笔记(二)

          本文链接:https://www.haomeiwen.com/subject/tldgxqtx.html