http 协议用于 web 开发,Go 语言中也实现了他,下面我们就来看下如何使用他。
hello world
1 | package main |
编译运行1
go run http.go
打开浏览器 http://localhost:8000
就可以看到效果了,是不是很简单。
使用 html 模板
1 | package main |
index.html1
2
3
4
5
6
7
8
9
10
11
12
13
14
15{{define "index"}}
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
{{.Title}}
</body>
</html>
{{end}}
加载静态 css/js 文件
1 | package main |
©版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 & 作者信息。
Happy Coding