摘要:
方式1 package main import ( "fmt" "net/http" ) // 中间件函数类型 type MiddlewareFunc func(http.HandlerFunc) http.HandlerFunc // 自定义中间件1 func LoggerMiddleware(n 阅读全文
摘要:
同级目录建立view文件夹。 package main import ( "bytes" "embed" "encoding/json" "fmt" "github.com/gin-gonic/gin" "html/template" "io/ioutil" "net/http" ) const ( 阅读全文
摘要:
1.二者区别只有一个,那就是对包含文件的需求程度,include 就是包含,如果被包含的文件不存在的话,那么则会提示一个错误,但是程序会继续执行下去。 2.require 意思是需要,如果被包含文件不存在或者无法打开的时候,则会提示错误,并且会终止程序的执行。 3.once 的意思是一次,那么 in 阅读全文
摘要:
之前有脚本把日志转成excel,下个月开始删除上个月的 year=$(date -d "1 month ago" +"%Y") month=$(date -d "1 month ago" +"%m") folder="/usr/share/nginx/html/excel" for file in 阅读全文