摘要:
fetch封装 npm install whatwg-fetch --save // 适配其他浏览器 npm install es6-promise export const handleResponse = (response) => { if (response.status 403 || re 阅读全文
摘要:
在构造函数调用 super 并将 props 作为参数传入的作用 在调用 super() 方法之前,子类构造函数无法使用this引用,ES6 子类也是如此。 将 props 参数传递给 super() 调用的主要原因是在子构造函数中能够通过this.props来获取传入的 props 传递了prop 阅读全文