代码: dataZoom: [ { type: 'slider', show: true, xAxisIndex: [0], handleSize: 20,//滑动条的 左右2个滑动条的大小 height: 8,//组件高度 left: 30, //左边的距离 right: 40,//右边的距离 b ...
分类:
其他好文 时间:
2020-06-29 00:39:11
阅读次数:
192
HPA:高攻放, SCPC(Single Channel Per Carrier),中文意思为单路单载波LHCP:left-hand circularly polarized 左旋圆极化RHCP:right-hand circularly polarized 右旋圆极化 ...
分类:
其他好文 时间:
2020-06-28 22:38:26
阅读次数:
187
在spring 3.2中,新增了@ControllerAdvice 注解,可以用于定义@ExceptionHandler、@InitBinder、@ModelAttribute,并应用到所有@RequestMapping中。 /** * 全局异常处理器 * * @author*/ @RestCont ...
分类:
其他好文 时间:
2020-06-28 15:38:11
阅读次数:
157
背景 node的父子进程中可以传递这是肯定的,但是传递对象,这是一个稀奇的地方。 code 发送 server 对象 sendHandle 参数可用于将一个 TCP server 对象句柄传给子进程,如下所示: const subprocess = require('child_process'). ...
分类:
系统相关 时间:
2020-06-28 09:34:30
阅读次数:
82
传统的get,set ES6 中引入Proxies,让你可以自定义Object的基本操作。例如,get就是Object的基础操作方法。 const obj = { val: 10 }; console.log(obj.val); 这里,console.log()表达式在对象obj上执行get方法来获 ...
分类:
Web程序 时间:
2020-06-28 09:14:41
阅读次数:
66
https://www.cnblogs.com/theseventhson/p/13194646.html 分享了shellcode 的基本原理,核心思路是动态获取GetProcAddress和LoadLibrary函数地址,再通过这两个函数获取其他windows dll提供的函数地址;需要注意的是 ...
练习1: 有这样的一个words数组,数组中每个字符串的格式为“词性:单词” String[] words = {"verb:eat","verb:drink","verb:sleep","verb:play","noun:rice","noun:meat","noun:hand","noun:ha ...
分类:
编程语言 时间:
2020-06-27 00:22:31
阅读次数:
53
1 BOOL IsAlreadyRun() 2 3 { 4 5 HANDLE hMutex = NULL; 6 hMutex = ::CreateMutex(NULL,FALSE,"Application"); 7 if(hMutex) 8 { 9 if(ERROR_ALREADY_EXIST==: ...
 int zmq_setsockopt(void *socket, int option_name, const void *option_value, size_t option_len);功能:设置套接字选项参数:socket:设置的套接字opti ...
分类:
其他好文 时间:
2020-06-25 09:29:37
阅读次数:
196