Invalid prop `value` of type `string` supplied to `Select`, expected `array` when `multiple` or `tags` is `true`. 这个位置默认值为数组 [ ] ...
分类:
其他好文 时间:
2020-01-23 12:40:07
阅读次数:
440
说实话,开始一脸懵,主要是不知道怎样往最短路径上想象。。。 【题意】:在一个仅有0,1所组成的数字中找n的最小倍数(所以开头为0当然是不行的),不超过200位(但我做题是没管,也AC了) 【思路】:因为要找n的倍数,当然从最小的一直增大到想要的数字;对于增大的数有两种情况,*10以及*10+1;所以 ...
分类:
其他好文 时间:
2020-01-22 22:20:39
阅读次数:
83
There are nn Christmas trees on an infinite number line. The ii -th tree grows at the position xixi . All xixi are guaranteed to be distinct. Each int ...
分类:
其他好文 时间:
2020-01-21 13:20:26
阅读次数:
96
算法实现: #include <iostream> using namespace std; int divisor(int a,int b); int ndivisor(int *a,int n); int multiple(int a,int b); int nmultiple(int *a,i ...
分类:
编程语言 时间:
2020-01-20 21:10:41
阅读次数:
107
学习Supervisor 小白必看的supervisor教程,帮助认识supervisor,再也不会不知所措 "官网" Ubuntu下载 下载命令 通过这种方式安装的supervisor会默认安装在 ,并且会自动加入到系统服务,随着系统的启动而启动;那么通过系统服务启动supervisor的命令是 ...
分类:
其他好文 时间:
2020-01-20 20:42:45
阅读次数:
79
Can you walk and talk at the same time? If so, you've experienced what it's like to be in two states at the same time. Hopefully, those two states hav ...
分类:
其他好文 时间:
2020-01-20 09:39:21
阅读次数:
70
<template> <div class="hello"> <el-form inline size="small"> <el-form-item label="学校"> <el-select v-model="title" multiple filterable clear placeholde ...
分类:
其他好文 时间:
2020-01-20 09:29:00
阅读次数:
138
设置多源复制时报错 ERROR 3077 (HY000): To have multiple channels, repository cannot be of type FILE; Please check the repository configuration and convert them ...
分类:
数据库 时间:
2020-01-20 00:35:00
阅读次数:
245
交换机会有下面的问题 1,单点断开 2,为了防止单点断开,就要做冗余,所以就会产生环路,环路产生后,就会产生广播风暴。 使用,交换机 STP(spanning tree 生成数)协议 ,可以解决上面的问题。 cisco交换机默认是开启STP功能的。 为了防止环路,在环上选择一个接口,阻塞它。 如何选 ...
分类:
其他好文 时间:
2020-01-19 09:25:28
阅读次数:
132
SpringMVC 的处理过程可分为如下 三步 : ( 1) ApplicationContext初始化时用 Map 保存所有 URL 和 Controller 类的对应关系 。 (2)根据请求 URL 找到对应的 Controller,并从 Controller 中找到处理请求的方法。 (3)将 ...
分类:
编程语言 时间:
2020-01-18 19:49:46
阅读次数:
96