240 发简信
IP属地:湖南
  • react性能优化总结

    1,this.xxxxx.bind(this)改变作用域的修改放在constructor中,保证绑定只操作一次,避免子组件的无畏渲染; 2,se...

  • 生命周期

    生命周期函数指在某一个时刻组件会自动调用执行的函数; componentWillMount(){ console.log('1')}在组件即将被...

  • create-react-app方式下引入antd

    由于create-react-app构建React App的方式推荐zero-configuration(零配置),所以只能通过npm run ...

  • webpack css模块化与antd的问题

    webpack对css模块化处理的时候,config文件是这样写的 {test:/\.css$/, use:[ ...

  • npm命令整理

    npm install --save react react-dom babelify babel-preset-react npm insta...