JS 继承的6+1种方案

6+1 就是原型链继承、构造函数继承、组合继承、原型式继承、寄生继承、寄生组合继承、再加上class的 extend 继承这么几种方法,我们逐一分析一下。

在开始之前,先明确一个共识:我们期望的继承能达到这样的效果:

每个子类都复用父类的方法,(方法共享)

每个子类都有从父类那里继......

Redux

使用 redux

首先要创建一个 store

而createStore 需要传入一个 reducer

import { createStore, combineReducers, bindActionCreators} from "redux"

// store in......

报错 : Cannot assign to read only property 'exports' of object '#'

浏览器报错: Cannot assign to read only property 'exports' of object '#'

这是一个模块语法的问题

使用 @babel/plugin-transform-modules-commonjs 来处理这个问题即......