废话不多说,直接开始上步骤. 一、去官网下载https://panjiachen.github.io/vue-element-admin-site/zh/guide/,我下载的是基础模板. 二、修改vue.config.js文件 1.找到module.exports下的before: require ...
分类:
其他好文 时间:
2021-06-17 16:49:59
阅读次数:
0
hashSet 类图: hashset 本质上为hashMap 的key, 常用于集合去重。 构造函数: public HashSet() { map = new HashMap<>(); } public HashSet(Collection<? extends E> c) { // (int) ...
分类:
其他好文 时间:
2021-06-15 17:33:38
阅读次数:
0
低版本mybatis <foreach collection="mapInfo.entrySet()" item="item" index="index" separator=","> ${item.key} = VALUES ( #{item.value} ) </foreach> 高版本 <fo ...
分类:
其他好文 时间:
2021-06-11 19:06:24
阅读次数:
0
任何容器的底层数据结构只有两种:一种是数组;另一种是链表。例如:list,set,map,二叉树,图等容器。访问容器使用Iterator迭代器。 public interface Collection_ { void add(Object o); int size(); Iterator_ iter ...
分类:
其他好文 时间:
2021-06-10 18:43:23
阅读次数:
0
数组的声明 int[] a; short[][] as; short s,aas[][]; //但通常将[][]放在变量之前 Object[] ao,aos; Collection<?>[] u; //声明具体元素类型未知的数组 数组的创建 数组在创建之前,不能使用,数组的创建有两种,一种是直接使用 ...
分类:
编程语言 时间:
2021-06-07 21:06:31
阅读次数:
0
我有两个集合,文章和评论,评论中的文章是文章中_id的外键. db.collection('article').aggregate( [ { $lookup: { from: "comments", localField: "_id", foreignField: "articleId", as: ...
分类:
数据库 时间:
2021-06-07 20:35:52
阅读次数:
0
zookeeper3.4.10 kafka 2.11 redis-4.0.2 ps -ef |grep redis 里面有一个 说明没事 mongodb 3.4.3 27017 他的表 叫collection scala 2.11.12 快捷键 1.如果包没有显示出来,需要自行添加, ctrl+al ...
分类:
其他好文 时间:
2021-06-05 18:14:39
阅读次数:
0
Install qBittorrent or Transmission Magnet Linkmagnet:?xt=urn:btih:351411DFA7D5A5EC1883D9B749D13FD2476BB3CD&tr=http%3A%2F%2Fbt2.t-ru.org%2Fann%3Fmagne ...
分类:
其他好文 时间:
2021-06-04 19:29:05
阅读次数:
0
@NotEmpty 用在集合类上面加了@NotEmpty的String类、Collection、Map、数组,是不能为null或者长度为0的(String Collection Map的isEmpty()方法)@NotBlank只用于String,不能为null且trim()之后size>0@Not ...
分类:
其他好文 时间:
2021-06-04 19:22:27
阅读次数:
0
# 静态文件访问地址前缀 STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'collectstatic') # 静态文件查找目录元组信息 STATICFILES_DIRS = ( os.path.join(BASE_DIR, ...
分类:
其他好文 时间:
2021-06-04 18:43:22
阅读次数:
0