问题原因在于官方在2020年12月2日正式将CentOS 6相关的软件源移出了官方源,随之而来逐级镜像也会陆续将其删除。 解决方案: curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Aliy ...
分类:
Web程序 时间:
2021-03-17 14:13:50
阅读次数:
0
elementui数据验证,出现问题时自动定位跳到改问题位置 that.$refs.editForm.validate((valid, object) => { console.log("valid,", valid, object) if(valid){ //调接口等一系列操作...... }el ...
分类:
其他好文 时间:
2021-03-15 10:36:04
阅读次数:
0
语法错误 原本是 addUser() { this.$refs.addFormRef.validate((valid) => { if (!valid) return // 可以发起添加用户的网络请求 }) 在return后添加false即可 修改后为 addUser() { this.$refs. ...
分类:
其他好文 时间:
2021-03-06 14:57:20
阅读次数:
0
仅供自己学习 思路: 做的时候再纠结如何分离出是为1比特数0还是2比特数的10。如果遇到0就到第二个元素,遇到1就跳过第二个个元素直接判断第三个元素是为0还是1,这样就能避免判断是2比特数10还是1比特数0。当这样跳过时,到达最后一个元素要么是倒数第二个数是1然后直接结束循环遍历,此时就返回fals ...
分类:
其他好文 时间:
2021-03-06 14:42:33
阅读次数:
0
1. 管道相关命令 1.1 cut cut:以某种方式按照文件的行进行分割 参数列表: 参数 英文 含义 -c characters 按字符选取 -b 按字节选取 忽略多字节字符边界,除非也指定了 -n 标志 -d '分隔符' delimiter 自定义分隔符,默认为制表符。 -f 'n1,n2' ...
分类:
系统相关 时间:
2021-02-26 13:01:54
阅读次数:
0
1. Binding 对数据的转换和校验 Binding 中,有检验和转换关卡。 1.1 数据校验 源码: namespace System.Windows.Data { public class Binding : BindingBase { ... public Collection<Valid ...
Given a string s of lower and upper case English letters. A good string is a string which doesn't have two adjacent characters s[i] and s[i + 1] where ...
分类:
其他好文 时间:
2021-02-22 12:38:24
阅读次数:
0
题目描述 给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词。 说明: 你可以假设字符串只包含小写字母。 原题请参考链接https://leetcode-cn.com/problems/valid-anagram/ 题解 方法一?【排序】 class Solution: ...
分类:
其他好文 时间:
2021-02-22 12:20:42
阅读次数:
0
https://blog.csdn.net/qq_36047372/article/details/73331304 3.继续打开web→html Files→Editor→Content Assist 修改Prompt when these characters are inserted:的值为: ...
分类:
Web程序 时间:
2021-02-17 14:20:37
阅读次数:
0
Valid Anagram (E) 题目 Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Input: s = "anagram", t = "nagaram" ...
分类:
其他好文 时间:
2021-02-15 12:41:17
阅读次数:
0