摘要:
var time = obj.biz_date + ' ' + obj.hours; //查找数组中的重复值 function find_first(arr, callback) { var val; arr.forEach((elt, i, arry) =>{ if(callback(elt)){ 阅读全文
摘要:
var newage_group = age_group.filter(function(element,index,self){ return self.indexOf(element) index; }); 阅读全文
摘要:
有两种方法: 1. 阅读全文
摘要:
这个错误是应该导入hightchart 使用的相关的 东西 ,这里是worldcloud import Wordcloud from 'highcharts/modules/wordcloud'; Wordcloud(highcharts) 注意 这里不是 vue.use(Wordcloud) 不要 阅读全文
摘要:
给这种 state 结构写 reducer 的方式是分拆成多个 reducer,拆分之后的 reducer 都是相同的结构(state, action),并且每个函数独立负责管理该特定切片 state 的更新。多个拆分之后的 reducer 可以响应一个 action,在需要的情况下独立的更新他们自 阅读全文
摘要:
网址 https://github.com/zalmoxisus/redux-devtools-extension 1.const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose; 2.import 阅读全文
摘要:
我们可以把Todolist 继续拆分 ,拆分为逻辑页面和ui页面 ui 页面 import React, { Component } from 'react';import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'import { DateP 阅读全文
摘要:
antd 的使用 1.安装npm install antd --save 2.引入到项目中 import 'antd/dist/antd.css'; // or 'antd/dist/antd.less' 3.按需引入 import { Input } from 'antd'; 4.添加样式 要使用 阅读全文