新建validator.js,内容如下,参考补充: const valid = { REG_PHONE: /^[1]([3-9])[0-9]{9}$/, checkNull(rule, value, callback, message, flag = true) { if (isNullOrEmpt ...
分类:
其他好文 时间:
2020-11-25 12:29:42
阅读次数:
4
%matplotlib inline import matplotlib.pyplot as plt plt.plot(xx,yy_train_loss,"r", label = "train_loss") plt.plot(xx,yy_valid_loss,"b", label = "valid_ ...
分类:
其他好文 时间:
2020-11-17 13:00:36
阅读次数:
26
> install.packages("farver")Installing package into ‘/usr/lib64/R/library’(as ‘lib’ is unspecified)trying URL 'https://mirrors.bfsu.edu.cn/CRAN/src/co ...
分类:
编程语言 时间:
2020-11-12 14:22:52
阅读次数:
14
登陆按钮的方法 loginbtn () { // 预校验 this.$refs.loginRef.validate(async (valid) => { // console.log(valid) if (!valid) { return } // 数据解构 const { data: res } ...
分类:
其他好文 时间:
2020-11-12 13:23:07
阅读次数:
6
[root@localhost ~]# virsh undefine vhuser-test1error: Failed to undefine domain vhuser-test1error: Requested operation is not valid: cannot undefine d ...
分类:
其他好文 时间:
2020-11-04 19:04:17
阅读次数:
16
LeetCode 941 有效的山脉数组 https://leetcode-cn.com/problems/valid-mountain-array/ 根据题意可以知道,当一个数组中的最大值在数组的中间某个位置(不能在数组的左右两端)并且这个位置往左边和右边走时数组是严格递减时,该数组才是有效的山脉 ...
分类:
编程语言 时间:
2020-11-04 17:42:49
阅读次数:
19
-bash-4.1$ crontab -e Authentication token is no longer valid; new one requiredYou (oracle) are not allowed to access to (crontab) because of pam conf ...
分类:
数据库 时间:
2020-10-31 01:45:57
阅读次数:
28
如果字符串满足一下条件之一,则可以称之为 有效括号字符串(valid parentheses string,可以简写为 VPS): 字符串是一个空字符串 "",或者是一个不为 "(" 或 ")" 的单字符。字符串可以写为 AB(A 与 B 字符串连接),其中 A 和 B 都是 有效括号字符串 。字符 ...
分类:
其他好文 时间:
2020-10-24 10:23:46
阅读次数:
25
给定一棵带点权的树,求满足点权极差不超过 $d$ 的连通子图的个数。$n,d \le 2000$。 ...
分类:
其他好文 时间:
2020-10-19 22:25:22
阅读次数:
18
1 using Newtonsoft.Json; 2 using Newtonsoft.Json.Linq; 3 4 static void Main(string[] args) 5 { 6 TestJsonValid(); 7 Console.ReadLine(); 8 } 9 10 stati ...