- 博客(5)
- 收藏
- 关注
原创 layui 表格(table)合计 取整问题更改
layui 表格(table)合计 取整问题更改;layui table.js 路径 ./static/js/layui/lay/modules/table.js提示: 如非必要,谨慎修改源码var e=t.totalRowText||"",i,type=t.totalRowType||"";if(type==="int")i=parseFloat(a[n]).toFixed(0);else i=parseFloat(a[n]).toFixed(2);return t.totalRow?i||e:
2021-06-24 17:19:01 551
原创 go 循环发送http请求导致经常报错超时记录
文章目录前言总结前言在使用 go 开多个 goroutine 跑多条数据时 ,在每个 goroutine 使用 http 请求后发现出现 请求超时的频率还是蛮高的,经过在网络上寻找,发现是在 for 循环里面使用 defer 导致的 ,特此记录一下,谨记代码如下(示例):func getChans() { defer waitGroup.Done() purl := "https://xx.xxx.xx/xx/xx" for { if data, ok := <-chanLis.
2021-01-04 11:17:02 1437 2
原创 记Vscode go 交叉编译篇
记Vscode go 交叉编译篇最近在学习go 语言,在win 系统下编译没什么问题,但需要放到 linux 系统下需要使用 交叉编译,网上找了教程,但是没有写明白到底是用的 cmd 还是 powershell ,我自己试的时候怎么都配置改不过来。下面是我走过的路:输入命令: go env 可以看到 set GOARCH=amd64 set GOOS=windowscmd 输入如下: set GOOS=linux 后直接编译即可powershell(因为 vscode 默认打开就是 powe
2020-12-27 18:45:01 1278 1
转载 Linux下ThinkPHP5实现定时器任务 - 结合crontab
Linux下ThinkPHP5实现定时器任务 - 结合crontab1.在/application/command创建要配置的PHP类文件,需要继承Command类,并重写configure和execute两个方法,例如:`<?php 2 namespace app\command; 3 use think\console\Command; 4 use think\console\...
2019-08-10 09:41:51 525
转载 完美解决Nginx部署ThinkPHP项目的办法
网上通用解决方法的配置如下:server { ... location / { index index.htm index.html index.php; #访问路径的文件不存在则重写URL转交给ThinkPHP处理 if (!-e $request_filename) { rewrite ^/(.*)$ ...
2018-09-15 09:02:25 810
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人