上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 77 下一页
摘要: var time = obj.biz_date + ' ' + obj.hours; //查找数组中的重复值 function find_first(arr, callback) { var val; arr.forEach((elt, i, arry) =>{ if(callback(elt)){ 阅读全文
posted @ 2018-11-16 09:44 1点 阅读(3226) 评论(0) 推荐(0) 编辑
摘要: var newage_group = age_group.filter(function(element,index,self){ return self.indexOf(element) index; }); 阅读全文
posted @ 2018-11-15 09:49 1点 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 有两种方法: 1. 阅读全文
posted @ 2018-11-12 17:53 1点 阅读(1465) 评论(0) 推荐(0) 编辑
摘要: 1.html 2.数据 3.方法 效果: 阅读全文
posted @ 2018-11-09 14:24 1点 阅读(13410) 评论(0) 推荐(0) 编辑
摘要: 1. 效果: 2. 3. 阅读全文
posted @ 2018-11-09 10:21 1点 阅读(1096) 评论(0) 推荐(0) 编辑
摘要: 这个错误是应该导入hightchart 使用的相关的 东西 ,这里是worldcloud import Wordcloud from 'highcharts/modules/wordcloud'; Wordcloud(highcharts) 注意 这里不是 vue.use(Wordcloud) 不要 阅读全文
posted @ 2018-11-07 15:56 1点 阅读(5264) 评论(0) 推荐(0) 编辑
摘要: 给这种 state 结构写 reducer 的方式是分拆成多个 reducer,拆分之后的 reducer 都是相同的结构(state, action),并且每个函数独立负责管理该特定切片 state 的更新。多个拆分之后的 reducer 可以响应一个 action,在需要的情况下独立的更新他们自 阅读全文
posted @ 2018-10-24 09:33 1点 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 网址 https://github.com/zalmoxisus/redux-devtools-extension 1.const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose; 2.import 阅读全文
posted @ 2018-10-23 11:22 1点 阅读(1903) 评论(0) 推荐(0) 编辑
摘要: 我们可以把Todolist 继续拆分 ,拆分为逻辑页面和ui页面 ui 页面 import React, { Component } from 'react';import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'import { DateP 阅读全文
posted @ 2018-10-18 10:00 1点 阅读(521) 评论(0) 推荐(0) 编辑
摘要: antd 的使用 1.安装npm install antd --save 2.引入到项目中 import 'antd/dist/antd.css'; // or 'antd/dist/antd.less' 3.按需引入 import { Input } from 'antd'; 4.添加样式 要使用 阅读全文
posted @ 2018-10-17 22:28 1点 阅读(311) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 77 下一页