码迷,mamicode.com
首页 >  
搜索关键字:reac    ( 1695个结果
数组判重并更新重复值
一维数组: $arr = [1,2,3,4,5,4,3,2,1,1,1,1]; updateRepeat($arr); 处理结果: array(12) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> int(4) [4]=> int(5) [5]=> s ...
分类:编程语言   时间:2019-12-23 13:32:16    阅读次数:87
map方法的应用
vardata=[[id:1,name:"张三",age:29,constellation:"水瓶座"],[id:2,name:"李四",age:17,constellation:"射手座"],[id:3,name:"王五",age:34,constellation:"处女座"]
分类:其他好文   时间:2019-12-23 00:40:02    阅读次数:64
umi 动态路由配置
import { getUserPerm } from '@/services/menu'; import router from 'umi/router'; let authRoutes = []; export const dva = { config: { onError(err) { err ...
分类:其他好文   时间:2019-12-22 12:43:32    阅读次数:1446
数组中的方法-- 会改变原数组的
我总结数组中的方法归为两类,一种是会改变原数组的,一种是不改变原数组的 这里将会介绍改变原数组的方法 1.pop()移除数组最后一个元素 var fruits = ["Banana", "Orange", "Apple", "Mango"]; fruits.pop(); console.log(fr ...
分类:编程语言   时间:2019-12-22 10:54:02    阅读次数:144
Spring Boot 外部化配置(二) - @ConfigurationProperties 、@EnableConfigurationProperties
[toc] 3、外部化配置的核心 接着上一章, "《Spring Boot 外部化配置(一)》" 3.2 @ConfigurationProperties 众所周知,当 Spring Boot 集成外部组件后,就可在 或 配置文件中定义组件需要的属性,如 组件: 其中都是以 为前缀。这其实是 为每个 ...
分类:编程语言   时间:2019-12-21 13:59:30    阅读次数:96
java8--- Predicate 意义 代码
//为了去除 DiyInterface 这个函数式接口,可以用通用函数式接口 Predicate 替代如下: https://blog.csdn.net/u011848397/article/details/89074794 public class People2{ private List<Pe ...
分类:编程语言   时间:2019-12-20 20:12:43    阅读次数:75
Unity3D 使用Socket处理数据并将数据 在UGUI、NGUI上显示出来
Unity3d 不支持C#的线程直接调用Unity3D 主线程才能实现的功能。例如:给UGUI text 赋值、改变Color值等。怎样解决这个问题呢?使用一个Loom脚本。 按照惯例贴上代码。 首先Loom脚本 using UnityEngine;using System.Collections; ...
分类:编程语言   时间:2019-12-20 18:39:15    阅读次数:135
C# type对象
新建控制台应用程序 新建一个类 class MyClass { private int id; private int age; public int numb; public string Name { get; set; } private string Name1 { get; set; } ...
分类:Windows程序   时间:2019-12-19 23:30:40    阅读次数:123
Spark RDD计算每天各省的top3热门广告
数据结构:时间戳,省份,城市,用户,广告,中间字段使用空格分割。 样本如下: 1516609143867 6 7 64 16 1516609143869 9 4 75 18 1516609143869 1 7 87 12 package Spark02 import org.apache.spark ...
分类:其他好文   时间:2019-12-19 18:55:54    阅读次数:129
自定义组装json对象
组装json对象 ...
分类:Web程序   时间:2019-12-19 16:19:57    阅读次数:113
1695条   上一页 1 ... 45 46 47 48 49 ... 170 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!