Loading

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: package main import ( "github.com/gin-gonic/gin" "html/template" "net/http" "time" ) type Address struct { Mobile string Email string } type News stru 阅读全文
posted @ 2024-10-25 15:30 一只大学生 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package main import ( "github.com/gin-gonic/gin" "net/http" ) type Article struct { Id int `json:"id"` Title string `json:"title"` } func main() { // 阅读全文
posted @ 2024-10-25 15:28 一只大学生 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1.创建项目 2.初始化 go mod init "项目名称" 3.下载gin go get -u github.com/gin-gonic/gin 4.以打开项目,创建main.go文件(创建入口)。至此配置完成 其他: 1.配置热加载 下载包 go install github.com/grav 阅读全文
posted @ 2024-10-24 16:41 一只大学生 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package "文件夹名" // 相当于设置命名空间 阅读全文
posted @ 2024-10-23 19:17 一只大学生 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <%-- Created by IntelliJ IDEA. User: 26945 Date: 2024/10/23 Time: 16:57 To change this template use File | Settings | File Templates. --%> <%@ page co 阅读全文
posted @ 2024-10-23 17:29 一只大学生 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.使用bootstrap v3: 下载bootstrap的css,bootstrap的js,jquery 引入方式一:网络引入 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> <link href= 阅读全文
posted @ 2024-10-23 17:09 一只大学生 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 一、基本语句示例 mysql -u root -p [-P "端口号"] -- 连接数据库 show databases; -- 显示数据库 use "数据库名"; -- 进入数据库 show tables; -- 显示表 CREATE DATABASE database_name; -- 创建数据 阅读全文
posted @ 2024-10-23 14:55 一只大学生 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 实用插件 Chinese(Simplified)LanguagePack/中文语言包 Imefix:解决win11 shift+F6 重命名快捷键失效 Classic UI:还原旧ui 设置相关 鼠标滚轮设置字号:设置->常规 快捷键:设置->按键映射 提示相关 形参提示 长代码补全提示 系统单个词 阅读全文
posted @ 2024-10-18 01:01 一只大学生 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 更改windows系统中的字体大小,对于edge浏览器会实现缩放 阅读全文
posted @ 2024-10-16 19:53 一只大学生 阅读(11) 评论(0) 推荐(0) 编辑
摘要: <el-input v-model="state.search.keyword" size="large" style="max-width: 450px" placeholder="请输入:ID / 姓名" :change="doEnter" @keydown.enter.native="doSe 阅读全文
posted @ 2024-10-15 13:55 一只大学生 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页