码迷,mamicode.com
首页 >  
搜索关键字:CTI    ( 37597个结果
实验6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa ...
分类:其他好文   时间:2021-06-11 18:04:10    阅读次数:0
设计模式中的迭代器Iterator
任何容器的底层数据结构只有两种:一种是数组;另一种是链表。例如:list,set,map,二叉树,图等容器。访问容器使用Iterator迭代器。 public interface Collection_ { void add(Object o); int size(); Iterator_ iter ...
分类:其他好文   时间:2021-06-10 18:43:23    阅读次数:0
前端Uncaught (in promise) 的解决方法及原因
问题:在Vue项目中使用axios调用一个第三方的接口时,前端无法获取到接口返回值,检查控制台Network发现接口请求已经正常发出并且有数据返回,但是控制台Console报了这么一个错误 上图可以看到接口请求正常响应并有返回,控制台却一直报错 Uncaught (in promise) 排查一番之 ...
分类:其他好文   时间:2021-06-10 18:42:11    阅读次数:0
js,jq当中dom操作
1、htmlDOM操作 (1)页面添加内容 document.write():向页面添加内容 document.innerHTML= :向页面添加内容 (2)css属性操作 document.xx.style.属性= :对元素添加css属性 (3)事件 onclick 点击事件 onlound:进入 ...
分类:Web程序   时间:2021-06-10 17:35:37    阅读次数:0
loadrunner录制代码回放session错误
错误提示:当用loadrunner录制了web的代码完成之后,进行回放,提示报错:Action.c(51): Error -27987: Requested image not found [MsgId: MERR-27987] 解决方案:进行关联,步骤如下: 先找到所要进行关联的对象,将代码复制出 ...
分类:其他好文   时间:2021-06-09 10:37:51    阅读次数:0
Svelte 中的 watch: 反应性语句
1 前言 Svelte 中反应性不仅可以作声明用,还可以用在一段语句中,这点类似 Vue 中的 watch,但比 watch 灵活。 2 正文 <script> import { loop_guard } from "svelte/internal"; let count = 3; const in ...
分类:其他好文   时间:2021-06-09 10:36:05    阅读次数:0
多进程的调用(multiprocessing.Process)
import multiprocessing, time, os# def pro(name):# print('hello', name, time.ctime())## if __name__ == '__main__':# l = []# for t in range(4):# t = mul ...
分类:系统相关   时间:2021-06-08 23:20:39    阅读次数:0
JavaEE-Spring相关API
4. spring相关API 4.1 ApplicationContext的继承体系 applicationContext:接口类型,代表应用上下文,可以通过其实例获得 Spring 容器中的 Bean 对象 4.2 ApplicationContext的实现类 1)ClassPathXmlAppl ...
分类:编程语言   时间:2021-06-08 23:14:29    阅读次数:0
vue 组件之间传值(父传子,子传父)
1.父传子 基本就用一个方式,props Father.vue(用v-bind(简写 : ) 将父组件传的值绑定到子组件上) <template> <div> 我是爸爸:{{message}} <hr> <Son :toSonData="toSonData"></Son> </div></templ ...
分类:其他好文   时间:2021-06-08 22:56:30    阅读次数:0
Docker按照kong和kongA
百度搜索kong install,查找官网安装教程,点docker海豚图表,查看:https://docs.konghq.com/enterprise/2.4.x/deployment/installation/docker/ 安装kong,按照官网的教程:docker pull kong/kong ...
分类:其他好文   时间:2021-06-07 21:18:02    阅读次数:0
37597条   上一页 1 ... 6 7 8 9 10 ... 3760 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!