至于未来会怎么样 反正路还长 天总会亮

Life is a journey, not a destination, care should be the scenery along the way and the mood to see the scenery.

个人博客
  • ...
     前端 浏览(1)  tangzihan ++阅读原文
    react基础--3
    redux开发者工具的使用 js import {composeWithDevTools} from 'redux-devtools-extension' import { createStore, applyMiddleware, combineReducers } from 'redux' import countReducer from './reducers/count'...
  • ...
     前端 浏览(4)  tangzihan ++阅读原文
    react基础--2
    react-redux react-redux需要配合 redux使用,react-redux可实现 redux与react的连接 但需遵循如下规范: 1.所有UI组件都应该包裹一个容器组件,他们是父子关系 2.容器组件是真正和redux打交道的,里面可以随意使用r...
  • ...
     前端 浏览(3)  tangzihan ++阅读原文
    Ant Design 按需加载css
    实现antd 样式按需引入 `npm i react-app-rewired customize-cra` 1.然后在项目根目录创建一个 `config-overrides.js` 用于修改默认配置。 js module.exports = function override(config, env) { // do stuff w...
  • ...
     前端 浏览(2)  tangzihan ++阅读原文
    react基础--1
    render函数如何执行 要调用render肯定要实例化类组件,可是代码中并没有实例化类组件的代码 原因在与,当写入组件标签时,react帮你实例化了类组件 执行 ReactDOM.render发生了什么? 1.react解析组件标签,找...