Go?gin框架加載Html模板文件的方法
Gin框架沒有內(nèi)置靜態(tài)文件服務(wù),但可以使用gin.Static或gin.StaticFS中間件來提供靜態(tài)文件服務(wù)。
效果圖如下:

一、gin 框架加載 Html 模板文件的方法
方式1:加載單個或多個html文件,需要指明具體文件名
r.LoadHTMLFiles("views/index.html")方式2:加載目錄下的所有html文件。如果還有下級目錄,則為 【文件名稱/**/*】
r.LoadHTMLGlob("views/*")二、設(shè)置靜態(tài)文件路由
html頁面中引用css/js等靜態(tài)文件,引用文件的相對路徑需要映射到工程的相應(yīng)目錄,Gin服務(wù)才能將這個文件提供給瀏覽器。調(diào)用的Gin函數(shù)為:gin.Static
使用說明:
html文件中的引用路徑為href="/a/b/c/styles.css"(見html代碼),但在GO項(xiàng)目中 styles.css 文件位于根目錄下的 asset/css/styles.css(見工程目錄結(jié)構(gòu))。此時使用函數(shù)如下:
r.Static("/a/b/c", "asset/css")意味著當(dāng)HTML頁面請求 /a/b/c/styles.css 時,Gin將會提供 asset/css/styles.css 文件。
注意:瀏覽器中獲取的css文件,仍然在 /a/b/c/ 目錄下(見效果圖中的標(biāo)注)
三、完整代碼實(shí)現(xiàn)
工程目錄結(jié)構(gòu):

go語言代碼:
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
//方式一: 加載單個或多個html文件,需要指明具體文件名
// 假設(shè)HTML文件位于"views"目錄下
//r.LoadHTMLFiles("views/index.html")
//方式二: 加載 views 目錄下的所有html文件。如果還有下級目錄,則為 views/**/*
r.LoadHTMLGlob("views/*")
// 設(shè)置靜態(tài)文件路由 將 html 文件中的請求路徑【/asset】 映射到 【asset】目錄下
r.Static("asset", "asset")
// 將 html 文件中的請求路徑【/a/b/c】 映射到 【asset/css】目錄下
r.Static("/a/b/c", "asset/css")
// 設(shè)置路由以提供HTML頁面
r.GET("/", func(c *gin.Context) {
c.HTML(200, "index.html", gin.H{})
})
// 啟動服務(wù)器
r.Run(":8080")
}html代碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>登錄頁面</title>
<link rel="stylesheet" href="/a/b/c/styles.css" rel="external nofollow" >
</head>
<body>
<div class="login-container">
<h2>登錄</h2>
<form id="loginForm">
<label for="username">用戶名:</label>
<input type="text" id="username" name="username" required><br><br>
<label for="password">密碼:</label>
<input type="password" id="password" name="password" required><br><br>
<input type="submit" value="登錄">
</form>
</div>
<script src="../asset/js/script.js"></script>
</body>
</html>css代碼:
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
.login-container {
width: 300px;
padding: 16px;
background-color: white;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h2 {
text-align: center;
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
input[type=submit] {
width: 100%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}js代碼:
document.getElementById('loginForm').addEventListener('submit', function(event) {
// 阻止表單默認(rèn)的提交行為
event.preventDefault();
// 獲取表單輸入的值
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
// 創(chuàng)建一個對象來存儲登錄信息
const loginData = {
username: username,
password: password
};
// 使用fetch API調(diào)用登錄接口
fetch('/user/login', {
method: 'POST', // 假設(shè)你的登錄接口使用POST方法
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(loginData) // 將登錄信息轉(zhuǎn)換為JSON字符串并發(fā)送
})
.then(response => response.json()) // 解析響應(yīng)為JSON
.then(data => {
// 根據(jù)接口返回的數(shù)據(jù)處理登錄結(jié)果
if (data.success) {
console.log('登錄成功');
// 在這里你可以做一些登錄成功后的操作,比如跳轉(zhuǎn)到另一個頁面
} else {
console.log('登錄失敗');
// 在這里你可以顯示錯誤消息給用戶
}
})
.catch(error => {
console.error('登錄時發(fā)生錯誤:', error);
// 在這里你可以處理錯誤情況,比如顯示一個通用的錯誤消息給用戶
});
});以上就是Go gin框架加載Html模板文件的方法的詳細(xì)內(nèi)容,更多關(guān)于Go gin框架加載Html文件的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
一文帶你學(xué)會使用Go語言實(shí)現(xiàn)自己的MCP服務(wù)端
這篇文章將帶大家速覽MCP的核心概念,并以Go語言為例,介紹如何開發(fā)MCP服務(wù)端和客戶端,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以參考一下2025-04-04
go語言for循環(huán)中嵌套defer的執(zhí)行順序
在Go語言中,defer語句用于延遲函數(shù)調(diào)用的執(zhí)行,本文主要介紹了go語言for循環(huán)中嵌套defer的執(zhí)行順序,具有一定的參考價值,感興趣的可以了解一下2025-03-03
解決golang sync.Wait()不執(zhí)行的問題
這篇文章主要介紹了解決golang sync.Wait()不執(zhí)行的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-12-12
Go并發(fā)編程之sync.Once使用實(shí)例詳解
sync.Once使用起來很簡單, 下面是一個簡單的使用案例,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友參考下吧2021-11-11
Go語言映射內(nèi)部實(shí)現(xiàn)及基礎(chǔ)功能實(shí)戰(zhàn)
這篇文章主要為大家介紹了Go語言映射的內(nèi)部實(shí)現(xiàn)和基礎(chǔ)功能實(shí)戰(zhàn),有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪<BR>2022-03-03

