摘要: Go操作常见数据库 sqlx连接mysql 新建sqlx_test数据库 package main import( "github.com/jmoiron/sqlx" _ "github.com/go-sql-driver/mysql" "fmt" ) var db *sqlx.DB func in 阅读全文
posted @ 2023-02-21 22:56 weiqi1009 阅读(37) 评论(0) 推荐(0)
摘要: Gin框架 web开发本质 go mod init 项目名 package main import ( "fmt" "io/ioutil" "net/http" ) func sayHello(w http.ResponseWriter,r *http.Request){ b,_:=ioutil.R 阅读全文
posted @ 2023-02-21 14:08 weiqi1009 阅读(32) 评论(0) 推荐(0)