原生GO开发的博客系统

Go博客实战教程,是一个练手级项目教程,使用原生Go开发,未使用任何框架。

如何使用原生Go开发一个web项目
循序渐进,掌握编程思维和思路
初步具有工程思维,能适应一般的开发工作

1. 搭建项目

package mainimport ("encoding/json""log""net/http"
)type IndexData struct {Title string `json:"title"`Desc string `json:"desc"`
}
func index(w http.ResponseWriter,r *http.Request)  {w.Header().Set("Content-Type","application/json")var indexData IndexDataindexData.Title = "码神之路go博客"indexData.Desc = "现在是入门教程"jsonStr,_ := json.Marshal(indexData)w.Write(jsonStr)
}func main()  {//程序入口,一个项目 只能有一个入口//web程序,http协议 ip portserver := http.Server{Addr: "127.0.0.1:8080",}http.HandleFunc("/",index)if err := server.ListenAndServe();err != nil{log.Println(err)}
}

2. 响应页面

func indexHtml(w http.ResponseWriter,r *http.Request)  {t := template.New("index.html")viewPath, _ := os.Getwd()t,_ = t.ParseFiles(viewPath + "/template/index.html")var indexData IndexDataindexData.Title = "码神之路go博客"indexData.Desc = "现在是入门教程"err := t.Execute(w,indexData)fmt.Println(err)
}func main()  {//程序入口,一个项目 只能有一个入口//web程序,http协议 ip portserver := http.Server{Addr: "127.0.0.1:8080",}http.HandleFunc("/",index)http.HandleFunc("/index.html",indexHtml)if err := server.ListenAndServe();err != nil{log.Println(err)}
}
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body>hello mszlu blog!!
{{.Title}}{{.Desc}}
</body>
</html>

3. 首页

3.1 页面解析

func index(w http.ResponseWriter,r *http.Request)  {var indexData IndexDataindexData.Title = "码神之路go博客"indexData.Desc = "现在是入门教程"t := template.New("index.html")//1. 拿到当前的路径path,_ := os.Getwd()//访问博客首页模板的时候,因为有多个模板的嵌套,解析文件的时候,需要将其涉及到的所有模板都进行解析home := path + "/template/home.html"header := path + "/template/layout/header.html"footer := path + "/template/layout/footer.html"personal := path + "/template/layout/personal.html"post := path + "/template/layout/post-list.html"pagination := path + "/template/layout/pagination.html"t,_ = t.ParseFiles(path + "/template/index.html",home,header,footer,personal,post,pagination)//页面上涉及到的所有的数据,必须有定义t.Execute(w,indexData)
}

3.2 首页数据格式定义

config/config.go

package configtype Viewer struct {Title stringDescription  stringLogo  stringNavigation  []stringBilibili stringAvatar stringUserName stringUserDesc string
}
type SystemConfig struct {AppName             stringVersion             float32CurrentDir          stringCdnURL stringQiniuAccessKey stringQiniuSecretKey stringValine boolValineAppid stringValineAppkey stringValineServerURL string
}

models/category.go

package modelstype Category struct {Cid      intName     stringCreateAt stringUpdateAt string
}

models/post.go

package modelsimport ("goblog/config""html/template""time"
)type Post struct {Pid        int    `json:"pid"`                // 文章IDTitle      string `json:"title"`            // 文章IDSlug       string `json:"slug"`              // 自定也页面 pathContent    string `json:"content"`        // 文章的htmlMarkdown   string `json:"markdown"`      // 文章的MarkdownCategoryId int    `json:"categoryId"` //分类idUserId     int    `json:"userId"`         //用户idViewCount  int    `json:"viewCount"`   //查看次数Type       int    `json:"type"`              //文章类型 0 普通,1 自定义文章CreateAt   time.Time `json:"createAt"`     // 创建时间UpdateAt   time.Time `json:"updateAt"`     // 更新时间
}type PostMore struct {Pid          int    `json:"pid"`                    // 文章IDTitle        string `json:"title"`                // 文章IDSlug         string `json:"slug"`                  // 自定也页面 pathContent      template.HTML `json:"content"`            // 文章的htmlCategoryId   int    `json:"categoryId"`     // 文章的MarkdownCategoryName string `json:"categoryName"` // 分类名UserId       int    `json:"userId"`             // 用户idUserName     string `json:"userName"`         // 用户名ViewCount    int    `json:"viewCount"`       // 查看次数Type         int    `json:"type"`                  // 文章类型 0 普通,1 自定义文章CreateAt     string `json:"createAt"`UpdateAt     string `json:"updateAt"`
}type PostReq struct {Pid        int    `json:"pid"`Title      string `json:"title"`Slug       string `json:"slug"`Content    string `json:"content"`Markdown   string `json:"markdown"`CategoryId int    `json:"categoryId"`UserId     int    `json:"userId"`Type       int    `json:"type"`
}type SearchResp struct {Pid   int    `orm:"pid" json:"pid"` // 文章IDTitle string `orm:"title" json:"title"`
}type PostRes struct {config.Viewerconfig.SystemConfigArticle PostMore
}

models/home.go

package modelstype HomeData struct {config.ViewerCategorys []CategoryPosts []PostMoreTotal intPage intPages []intPageEnd bool
}

4. 配置文件读取

config.toml:

[viewer]Title = "码神之路Go语言博客"Description = "码神之路Go语言博客"Logo = "/resource/images/logo.png"Navigation = ["首页","/", "GO语言","/golang", "归档","/pigeonhole", "关于","/about"]Bilibili = "https://space.bilibili.com/473844125"Zhihu = "https://www.zhihu.com/people/ma-shen-zhi-lu"Avatar = "https://gimg2.baidu.com/image_search/src=http%3A%2F%2Finews.gtimg.com%2Fnewsapp_bt%2F0%2F13147603927%2F1000.jpg&refer=http%3A%2F%2Finews.gtimg.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1647242040&t=c6108010ed46b4acebe18955acdd2d24"UserName = "码神之路"UserDesc = "长得非常帅的程序员"
[system]CdnURL = "https://static.mszlu.com/goblog/es6/md-assets"QiniuAccessKey = "替换自己的"QiniuSecretKey = "替换自己的"Valine = trueValineAppid = "替换自己的"ValineAppkey = "替换自己的"ValineServerURL = "替换自己的"
package configimport ("github.com/BurntSushi/toml""os"
)type TomlConfig struct {Viewer ViewerSystem SystemConfig
}
type Viewer struct {Title stringDescription  stringLogo  stringNavigation  []stringBilibili stringAvatar stringUserName stringUserDesc string
}
type SystemConfig struct {AppName             stringVersion             float32CurrentDir          stringCdnURL stringQiniuAccessKey stringQiniuSecretKey stringValine boolValineAppid stringValineAppkey stringValineServerURL string
}
var Cfg *TomlConfigfunc init()  {Cfg = new(TomlConfig)var err errorCfg.System.CurrentDir, err = os.Getwd()if err != nil {panic(err)}Cfg.System.AppName = "mszlu-go-blog"Cfg.System.Version = 1.0_,err = toml.DecodeFile("config/config.toml",&Cfg)if err != nil {panic(err)}
}

5. 假数据-显示首页内容

package mainimport ("html/template""log""ms-go-blog/config""ms-go-blog/models""net/http""time"
)type IndexData struct {Title string `json:"title"`Desc string `json:"desc"`
}func IsODD(num int) bool  {return num%2 == 0
}
func GetNextName(strs []string,index int) string{return strs[index+1]
}
func Date(layout string)  string{return time.Now().Format(layout)
}
func index(w http.ResponseWriter,r *http.Request)  {t := template.New("index.html")//1. 拿到当前的路径path := config.Cfg.System.CurrentDir//访问博客首页模板的时候,因为有多个模板的嵌套,解析文件的时候,需要将其涉及到的所有模板都进行解析home := path + "/template/home.html"header := path + "/template/layout/header.html"footer := path + "/template/layout/footer.html"personal := path + "/template/layout/personal.html"post := path + "/template/layout/post-list.html"pagination := path + "/template/layout/pagination.html"t.Funcs(template.FuncMap{"isODD":IsODD,"getNextName":GetNextName,"date":Date})t,err := t.ParseFiles(path + "/template/index.html",home,header,footer,personal,post,pagination)if err != nil {log.Println(err)}//页面上涉及到的所有的数据,必须有定义var categorys = []models.Category{{Cid: 1,Name: "go",},}var posts = []models.PostMore{{Pid: 1,Title: "go博客",Content: "内容",UserName: "码神",ViewCount: 123,CreateAt: "2022-02-20",CategoryId:1,CategoryName: "go",Type:0,},}var hr = &models.HomeResponse{config.Cfg.Viewer,categorys,posts,1,1,[]int{1},true,}t.Execute(w,hr)
}func main()  {//程序入口,一个项目 只能有一个入口//web程序,http协议 ip portserver := http.Server{Addr: "127.0.0.1:8080",}http.HandleFunc("/",index)http.Handle("/resource/",http.StripPrefix("/resource/",http.FileServer(http.Dir("public/resource/"))))if err := server.ListenAndServe();err != nil{log.Println(err)}
}

后续内容在gitee上面: 传送门

记得给一个start

使用 : 直接克隆地址到自己的go项目中,浏览器访问 127.0.0.1:8080可访问

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/715402.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Vue3_2024_1天【Vue3创建和响应式,对比Vue2】

前言&#xff1a; Vue3对比Vue2版本&#xff0c;它在性能、功能、易用性和可维护性方面都有显著的提升和改进。 性能优化&#xff1a;模板编译器的优化、对Proxy的支持以及使用了更加高效的Virtual DOM算法等。这使得Vue3的打包大小减少了41%&#xff0c;初次渲染提速55%&#…

【MATLAB源码-第153期】基于matlab的OFDM系统插入导频和训练符号两种信道估计方式误码率对比仿真。

操作环境&#xff1a; MATLAB 2022a 1、算法描述 OFDM&#xff08;Orthogonal Frequency Division Multiplexing&#xff0c;正交频分复用&#xff09;是一种高效的无线信号传输技术&#xff0c;广泛应用于现代通信系统&#xff0c;如Wi-Fi、LTE和5G。OFDM通过将宽带信道划分…

使用docker方式测试部署django项目(客户催)

需求 1&#xff1a;已有django项目–weidanyewu 2&#xff1a;希望在服务器上测试部署–客户催 3&#xff1a;没完善django的启动 4&#xff1a;使用临时数据库进行演示 5&#xff1a;使用python3.10版本镜像 6&#xff1a;展示端口80 7&#xff1a;后台执行django程序 8&#…

【C语言】熟悉文件顺序读写函数

前言 本篇详细介绍了 文件顺序读写常用函数&#xff0c;快来看看吧~ 欢迎关注个人主页&#xff1a;逸狼 创造不易&#xff0c;可以点点赞吗~ 如有错误&#xff0c;欢迎指出~ 目录 前言 ​编辑 文件顺序读写函数 fgetc函数 示例 fputc函数 逐个字符写入 写入26个字母 文…

手写模拟器,解放双手!效果炸裂的生产工具

手写模拟器是一款基于Handright的仿手写图片生成软件&#xff0c;可以让你的电脑和手机也能写出漂亮的手写字&#xff0c;你只需要输入你想要写的内容&#xff0c;选择你喜欢的字体和背景&#xff0c;就可以生成一张高仿真的手写图片&#xff0c;用于各种场合&#xff0c;比如做…

uniapp中canvas的基础使用

canvas简介 canvas是uniapp中提供的一个组件,用于生成自定义的图形界面。通过canvas,我们可以通过JavaScript代码在页面上绘制各种图形和图像。 使用canvas 在页面中添加canvas 首先需要在页面的template中添加一个canvas组件: <template><view><canvas ca…

linux:iostat 用法详解

文章目录 描述语法参数例子 描述 iostat 是一个在类Unix操作系统中常用的系统监控工具&#xff0c;尤其是Linux系统中&#xff0c;它主要用于收集和报告中央处理器(CPU)使用情况以及磁盘输入/输出(I/O)统计数据。以下是 iostat 命令的基本用法及其参数详解&#xff1a; 语法 …

代码随想录三刷 day11 | 栈与队列之 20. 有效的括号 1047. 删除字符串中的所有相邻重复项 150. 逆波兰表达式求值

三刷day11 20. 有效的括号1047. 删除字符串中的所有相邻重复项150. 逆波兰表达式求值 20. 有效的括号 题目链接 解题思路&#xff1a; 有三种不匹配的情况&#xff1a; 第一种情况&#xff0c;字符串里左方向的括号多余了 。 第二种情况&#xff0c;括号没有多余&#xff0c;…

[伴学笔记]01-操作系统概述 [南京大学2024操作系统]

文章目录 前言jyy:01-操作系统概述 [南京大学2024操作系统]为什么要学操作系统?学习操作系统能得到什么? 什么是操作系统?想要明白什么是操作系统:时间线:1940s1950s-1960s1960-1970s年代. 信息来源: 前言 督促自己,同时分享所得,阅读完本篇大约需要10分钟,希望为朋友的技术…

编码规则转换

思考&#xff1a; 如何将一个机内码转换为区内码&#xff1f; 只要将机内码减去 A0A0 就可以啦 如果只让我们用加法器来解决呢&#xff1f; 注意我们的数据占用了 32 位&#xff0c;如果想用补码进行减法运算的话&#xff0c;符号位怎么办&#xff1f;&#xff1f;&#xf…

《探索数据结构之美:如何高效实现哈希表》

摘要&#xff1a;哈希表是一种基于键值对的数据结构&#xff0c;它通过哈希函数将键映射到表中一个位置&#xff0c;以实现快速的插入、删除和查找操作。在本期播客中&#xff0c;我们将深入剖析哈希表的数据结构&#xff0c;分享如何用Python语言实现一个哈希表项目。此外&…

【深度学习笔记】计算机视觉——微调

微调 前面的一些章节介绍了如何在只有6万张图像的Fashion-MNIST训练数据集上训练模型。 我们还描述了学术界当下使用最广泛的大规模图像数据集ImageNet&#xff0c;它有超过1000万的图像和1000类的物体。 然而&#xff0c;我们平常接触到的数据集的规模通常在这两者之间。 假…

【计算机是怎么跑起来的】软件,体验一次手工汇编

【计算机是怎么跑起来的】软件,体验一次手工汇编 二进制机器语言汇编语言操作码操作数寄存器内存地址和I/O地址参考书:计算机是怎么跑起来的 第三章外设在路上。。。先整理一下本书涉及的理论知识,反正后面做视频也要重写QAQ 程序的作用是驱动硬件工作,所以在编写程序之前必…

【C++庖丁解牛】类与对象

&#x1f4d9; 作者简介 &#xff1a;RO-BERRY &#x1f4d7; 学习方向&#xff1a;致力于C、C、数据结构、TCP/IP、数据库等等一系列知识 &#x1f4d2; 日后方向 : 偏向于CPP开发以及大数据方向&#xff0c;欢迎各位关注&#xff0c;谢谢各位的支持 目录 1.面向过程和面向对象…

对单例模式的饿汉式、懒汉式的思考

目录 1 什么是单例模式&#xff1f;1.1 什么是饿汉式&#xff1f;1.2 什么是懒汉式&#xff1f; 2 我对饿汉式的思考3 懒汉式3.1 解决懒汉式的线程安全问题3.1.1 加锁&#xff1a;synchronized&#xff08;synchronized修饰静态方法&#xff09;3.1.2 对“3.1.1”性能的改进 1 …

环形链表详解(让你彻底理解环形链表)

文章目录 一.什么是环形链表&#xff1f;二.环形链表的例题&#xff08;力扣&#xff09; 三.环形链表的延伸问题 补充 一.什么是环形链表&#xff1f; 环形链表是一种特殊类型的链表数据结构&#xff0c;其最后一个节点的"下一个"指针指向链表中的某个节点&#xff…

Python 教学平台,支持“多班教学”的课程授课方式|ModelWhale 版本更新

龙行龘龘、前程朤朤&#xff0c;ModelWhale 新一轮的版本更新&#xff0c;期待为大家带来更优质的使用体验。 本次更新中&#xff0c;ModelWhale 主要进行了以下功能迭代&#xff1a; 新增 课程&#xff08;包括课件、作业、算力&#xff09;按班级管理&#xff08;团队版✓ …

springcloud的搭建和封装,已进行开源,相互学习代码知识。

springcloud架构的统一父工程&#xff0c;&#xff08;管理子模块&#xff0c;管理依赖插件&#xff0c;依赖版本等&#xff09; abillty:能力服务块&#xff1a;存放一些非业务相关的微服务&#xff0c;比如网关&#xff0c;身份认证等 exce: 网关中的一些异常信息处理 gatewa…

基于Springboot的人事管理系统 (有报告)。Javaee项目,springboot项目。

演示视频&#xff1a; 基于Springboot的人事管理系统 &#xff08;有报告&#xff09;。Javaee项目&#xff0c;springboot项目。 项目介绍&#xff1a; 采用M&#xff08;model&#xff09;V&#xff08;view&#xff09;C&#xff08;controller&#xff09;三层体系结构&am…

【Git】merge时报错:refusing to merge unrelated histories

文章目录 一、问题二、解决办法1、将feature分支的东西追加到master分支中2、将feature里的东西直接覆盖到master分支中 一、问题 今天将feature分支合并到master时报错&#xff1a;refusing to merge unrelated histories&#xff08;拒绝合并无关历史&#xff09; 报错原因&…