摘要:
1.安装 react-router是核心库,在项目中不需要安装,web开发只需安装react-router-dom、native开发安装react-router-native。 非路由挂载的组件如果想使用history,match,location时需要使用withRouter高阶组件, impor 阅读全文
摘要:
String.prototype.hashCode = function(){ var hash = 0; for (var i = 0; i < this.length; i++) { var character = this.charCodeAt(i); hash = ((hash<<5)-ha 阅读全文