基本 show([s,[e],[fn]]) hide([s,[e],[fn]]) toggle([s],[e],[fn]) 滑动 slideDown([s],[e],[fn]) slideUp([s,[e],[fn]]) slideToggle([s],[e],[fn]) 淡入淡出 fadeIn([ ...
分类:
Web程序 时间:
2020-11-24 13:03:47
阅读次数:
23
方法一: import org.json.*; //获取响应状态码 String code = prev.getResponseCode(); System.out.println("code的值:" + code); if (code.equals("${my_code}")) { //获取上一个 ...
分类:
系统相关 时间:
2020-11-21 12:28:24
阅读次数:
13
// 保存 saveData() { teacher.save(this.teacher).then(response => { return this.$message({ type: 'success', message: '保存成功!' }) }).then(resposne => { // ...
分类:
其他好文 时间:
2020-11-20 12:19:49
阅读次数:
19
v-show不能在<template>上使用 <button v-on:click="warn('Form cannot be submitted yet.', $event)">Submit</button> // ... methods: { warn: function (message, e ...
分类:
Web程序 时间:
2020-11-20 11:58:10
阅读次数:
15
1.創建隊列及隊列表且启动之 aq_admin login begin --Create a table for queues dbms_aqadm.create_queue_table (queue_table=>'aq_msg_qtab2',queue_payload_type=>'AQ_ADM ...
分类:
数据库 时间:
2020-11-19 12:45:07
阅读次数:
17
在业务场景中,处理一个任务队列,可能需要依照某种优先级顺序,这时,Java中的PriorityQueue(优先队列)便可以派上用场。优先队列的原理与堆排序密不可分,可以参考我之前的一篇博客: 堆排序总结与实现 原理 PriorityQueue中维护一个Queue[]数组,在逻辑上把它理解成一个小根堆 ...
分类:
其他好文 时间:
2020-11-19 12:02:21
阅读次数:
7
变量和简单数据类型 变量 python3 message=“Hello Python World!” print(message) 我们添加了一个名为message的变量,运行之后的结果是 Hello Python World! 变量的命名和使用:(这部分和C基本是一样的) 变量名只能包含字母、数字 ...
分类:
编程语言 时间:
2020-11-18 12:59:09
阅读次数:
8
private void Load_Control_ReCombine<T>(List<T> list, string propertyName, string RecombineID) { try { FieldInfo fieldInfo = typeof(T).GetField(propert ...
分类:
其他好文 时间:
2020-11-17 12:56:16
阅读次数:
24
#头文件 #include<queue> 首先是基本的用法 定义一个普通队列(先进先出) queue q; 然后是一些基本的用法: a=q.top(); a=q.front();//两个都是取队首元素 a=q.back();//返回对尾元素 q.push(a);//将a入队 q.pop();//将队 ...
分类:
其他好文 时间:
2020-11-16 14:04:06
阅读次数:
18
进程间通讯测试 from multiprocessing import Process,Pipe,Queue def read_pipe(output,input): output_p,input_p = output,input while True: try: output_p.recv() e ...
分类:
系统相关 时间:
2020-11-16 14:00:24
阅读次数:
23