最新回答 / 咸粥
箭头函数里面没有自己的this,指向的是外层的this;在一个对象的方法里面,本身this指向的是对象,如果用箭头函数,this指向的就不是当前对象,指向的也就是window,所以产生很多问题
2018-08-16
最新回答 / renderman
通常,将npm升级到最高版本可排除绝大多数错误
npm i -g npm或者,你可以尝试暂时更改npm的源
npm config list // 查看 npm config set registry https://registry.npm.taobao.org // 比如切为淘宝镜像
2018-08-03