代码如下: const http = require('http'); /* request 获取url传来的信息 response 给浏览器的响应信息 */ http.createServer(function (request, response) { // 设置响应头 response.wri ...
分类:
Web程序 时间:
2021-02-20 12:20:56
阅读次数:
0
原文链接: https://stackoverflow.com/questions/5441972/how-to-see-log-files-in-mysql To enable error log add following [mysqld_safe] log_error=/var/log/mys ...
分类:
数据库 时间:
2021-02-20 12:19:06
阅读次数:
0
一、慢查询日志 -- 是否记录查询日志 show variables like 'slow_query_log'; -- 是否记录未使用索引的查询 show variables like 'log_queries_not_using_indexes'; -- 开启 set GLOBAL log_qu ...
分类:
数据库 时间:
2021-02-20 12:13:00
阅读次数:
0
函数参数的默认值 基本用法 ES6之前 由于不能直接为函数的参数指定默认值 所以只能采用一些变通的方法 function log(x, y) { y = y || 'world' console.log(x, y) } 上面代码问题是:如果参数y赋值了 但是对应的布尔值为false 则该赋值不起作用 ...
分类:
其他好文 时间:
2021-02-20 12:10:23
阅读次数:
0
String.Format("{0:N1}", a) 保留小数点后一位 String.Format("{0:N2}", a) 保留小数点后两位 String.Format("{0:N3}", a) 保留小数点后三位 C#保留小数位N位四舍五入 double s=0.55555; result=s.T ...
1.前言 在官方 axios 中,还提供了 axios.all和axios.spread 这两个方法,这两个方法主要是为了执行多个并发请求,官方文档中,它们的用法示例如下: function getUserAccount() { return axios.get('/user/12345'); } ...
分类:
移动开发 时间:
2021-02-19 13:38:48
阅读次数:
0
valgrind是很好的检查内存泄漏的工具 使用命令: $ valgrind --tool=memcheck --log-file=/root/valgrind_log_all --leak-check=full --error-limit=no --show-reachable=yes --tra ...
分类:
其他好文 时间:
2021-02-19 13:36:36
阅读次数:
0
//使用Number转换成数值类型 var a = '100'; var aa = '100.23'; var b = 'abcd'; var c = false; console.log(Number(a));//100 console.log(Number(aa));//100.23 conso ...
分类:
Web程序 时间:
2021-02-19 13:26:01
阅读次数:
0
//布尔类型转换 var a = Boolean('0');//打印true 因为字符串有数据所以是true var b = Boolean(0);//打印false var c = Boolean('1');//打印true var d = Boolean(1);//打印true var e = ...
分类:
Web程序 时间:
2021-02-19 13:24:21
阅读次数:
0
var number = 0.1 + 0.2; console.log(number);//打印结果是:0.30000000000000004 //转换成整数在计算 var number = (0.1*10 + 0.2*10) / 10; console.log(number);//打印结果是0.3 ...
分类:
Web程序 时间:
2021-02-19 13:21:11
阅读次数:
0