一、JS数组 JavaScript中的数组类似于Python的列表 1 a = [11,22,33,44] 常见功能: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 obj.length 数组的大小 obj.push(ele) 尾部追加元素 obj.pop() 尾部获 ...
分类:
编程语言 时间:
2021-04-27 14:54:14
阅读次数:
0
1 Ruby@DESKTOP-4INK1I3 MINGW64 /f/Git/test (master) 2 $ git push origin master 3 fatal: unable to access 'https://github.com/xxx/test.git/': OpenSSL S ...
分类:
其他好文 时间:
2021-04-24 13:43:19
阅读次数:
0
题目链接: http://codeforces.com/problemset/problem/1516/B 题意 一个含有 n 个非负数的数组,定义某种操作可以把相邻的两个数通过 XOR 合并为一个数,即每次操作后数组的元素个数都会减 1。问是否可以经过若干次这样的操作使得数组中的元素都相等? 思路 ...
分类:
其他好文 时间:
2021-04-24 13:14:41
阅读次数:
0
Configuration: 默认有两个配置文件 /etc/ansible/ansible.cfg 为配置文件 /etc/ansible/hosts为inventory host_key_checking = True 时,不能使用密码链接target ...
分类:
其他好文 时间:
2021-04-21 12:59:45
阅读次数:
0
今天在本机windows7上测试个git,想将git代码推送到代码服务器。结果git总是报错 $ git push -u origin master git@192.168.0.208's password: Permission denied, please try again. git@192. ...
分类:
其他好文 时间:
2021-04-21 12:18:25
阅读次数:
0
一、Git版本控制 SVN:集中式版本控制 Git:分布式版本控制 git官网:https://git-scm.com git淘宝镜像地址:http://npm.taobao.org/mirrors/git-for-windows 工作流程:工作区 > 暂存区 > 本地仓库 > 远程仓库 二、Git ...
分类:
其他好文 时间:
2021-04-20 15:27:52
阅读次数:
0
考察如下示例代码: // 创建二维数组 const arr = Array(2).fill([]); // 操作第一个元素 arr[0].push(1); // 结果是操作了所有数组 console.log(arr); // [ [ 1 ], [ 1 ] ] 和 new 不 new 关系,以下代码问 ...
分类:
其他好文 时间:
2021-04-20 15:27:38
阅读次数:
0
1.当前路由传递对象参数 (1)通过this.$router.push传递 var arr = JSON.stringify(this.user) this.$router.push({name:'home',params:{user:encodeURIComponent(arr)}}) this. ...
分类:
其他好文 时间:
2021-04-20 14:26:59
阅读次数:
0
配置git: git config --global user.name "XXX" git config --gloaal user.email "XXX@...com" 文件在用户目录下 .gitconfig 中,可以手动删除 关联远程仓库 转到工程目录下 为了下次连接远程仓库不用输入密码,设置 ...
分类:
其他好文 时间:
2021-04-19 15:55:18
阅读次数:
0
首先github右上角个人点开 然后setting 然后 然后 然后 这个note我是随便填的 下面都勾选了,具体想搞明白各项什么意思的点击read more about... 最后generate token 下面有github文档的友情链接 算了 不会搞友情链接,自行复制一下吧 https:// ...
分类:
数据库 时间:
2021-04-16 11:41:01
阅读次数:
0