一、JavaScript for/in 语句循环遍历对象的属性 var person={fname:"Bill",lname:"Gates",age:56}; var txt = ""; // x 为属性名 for (x in person) { txt = txt + person[x]; } c ...
分类:
编程语言 时间:
2021-07-05 17:32:20
阅读次数:
0
贪吃蛇游戏 贪食蛇(也叫贪吃蛇)是一款经典的小游戏。初始是像素版本,后来又衍生出3D版本、多人对战版本等。 这里使用C语言来实现DOS下的贪吃蛇小游戏。 开发工具:Visual Studio 2019 开发语言:C语言 游戏开始后,会在中间位置出现一条只有一个个节点的贪吃蛇,并随机出现一个食物。 贪 ...
分类:
编程语言 时间:
2021-07-05 17:27:24
阅读次数:
0
import axios from 'axios'; import iView from 'iview'; const baseApiObj = { production: 'https://imzt.bndxqc.com/api', experience: 'https://imztty.bndx ...
分类:
Web程序 时间:
2021-07-05 16:58:57
阅读次数:
0
[root@NMS src]# yum search mariadb Last metadata expiration check: 0:46:24 ago on Fri 02 Jul 2021 08:18:32 PM CST. Name Exactly Matched: mariadb maria ...
分类:
数据库 时间:
2021-07-05 16:58:36
阅读次数:
0
1.必须使用keep-alive才有效果(App.vue中添加)。 <keep-alive> <router-view></router-view> </keep-alive> 2.activated活跃状态下。 3.deactivated不活跃状态下。 ...
分类:
其他好文 时间:
2021-07-05 16:57:44
阅读次数:
0
1.问题: Warning: Permanently added 'github.com' (RSA) to the list of known hosts. git@github.com: Permission denied (publickey). fatal: Could not read f ...
分类:
其他好文 时间:
2021-07-05 16:56:22
阅读次数:
0
@Test public void testTime() { var d1 = LocalDate.of(2021,1,1); var d2 = LocalDate.of(2021,7,2); Period p = Period.between(d1, d2); System.out.println ...
分类:
其他好文 时间:
2021-07-02 16:38:05
阅读次数:
0
1. 配置启动项目 在 Identify Project 序列下设置项目的名称,通过设置 Parameters.Project.Name 2. Variant code 添加 通过Read SerialNumber & UUT Load+Lock 序列下,设置Parameters.Socket.Va ...
分类:
其他好文 时间:
2021-07-02 16:37:12
阅读次数:
0
查了别人解决方法,最终自己的解决方法如下,http和https都不要配置代理,主要是下面那句,因为git就是https的 git config --global --unset http.proxy git config --global --unset https.proxy 分别执行了下面的两句 ...
分类:
其他好文 时间:
2021-07-02 16:13:13
阅读次数:
0
//把创建的对象都放到applicationContext容器中,要用时,在通过id一个一个取出来 壹、第一个spring项目 主配置文件 <beans> <bean id="a" class="com.dh.service.impl.SomeServiceImpl"/></beans> //在sp ...
分类:
编程语言 时间:
2021-07-02 15:49:28
阅读次数:
0