Go-Mega Tutorial 01 - Hello World

01-Hello World

项目地址 https://github.com/bonfy/go-mega

通常计算机书的开头都是 Hello Worldgit

咱们亦不能免俗,因此本章咱们的任务就是完成最简单的 Hello Worldgithub

本章的GitHub连接为: Source, Zipgolang

创建目录结构

与 Python 相比,Go 对代码存放的位置仍是有讲究的,毕竟这是由 Go 特殊的 package引用机制 决定的,首先创建本身存放此次代码的文件夹web

$ cd $GOPATH/src
$ mkdir -p github.com/bonfy/go-mega-code
$ cd github.com/bonfy/go-mega-code

这里若是你们有Github帐号,并且想上传到本身的repo的话,建议 github.com/your_user_name/repo_name 的文件夹flask

Hello World 应用

在 github.com/bonfy/go-mega-code 文件夹下 创建 main.go,这是咱们程序的主入口浏览器

main.go网络

package main

import "net/http"

func main() {
    http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
        w.Write([]byte("Hello World"))
    })
    http.ListenAndServe(":8888", nil)
}

短短不到10行代码,咱们的 Hello World 应用就已经完成了,并且不须要任何的其余第三方Package,只须要引入官方的 net/http 就好了,就是这么easyapp

让咱们来运行下面的命令,看下效果函数

$ go run main.go

如今打开您的网络浏览器并在地址栏中输入如下URL:ui

http://localhost:8888

或者

http://127.0.0.1:8888

01-01

说明

这里对上面的代码进行简单的说明

这里的 func main() 是主程序入口,主要用到了 net/http 的两个函数

func HandleFunc(pattern string, handler func(ResponseWriter, *Request))

func ListenAndServe(addr string, handler Handler) error

HandleFunc 相似于 flask的 app.route, pattern 提供了路由路径,handler是一个函数参数,这里咱们的程序中传入的是一个匿名函数, 减小了代码

ListenAndServe 第一个参数为 addr,若是不提供ip,这里只传入端口,至关于 0.0.0.0:8888 ,第二个参数 Handler 传入 nil,则表示使用 Default 的 Server

另外 输出 Hello World 的办法,大体有三个,以下:

// Case 1: w.Write byte
w.Write([]byte("Hello World"))

// Case 2: fmt.Fprintf
fmt.Fprintf(w, "Hello World")

// Case 3: io.Write
io.WriteString(w, "Hello World")

其中第一种用的是 ResponseWriter 的 Write([]byte) (int, error) 方法, 而 后面两种是稍微用到了 Go 里面interface 的特性, ResponseWriter interface 要实现 Write([]byte) (int, error) 的方法,因此也就实现了 io.Writer 方法,因此能够做为 io.Writer 的类型做为 后面两个函数的参数。

这里若是想更深刻的了解 net/http 处理请求的话,能够看下Go源码中的 net/http/server.go

或者看下 Go的http包详解

相关文章
相关标签/搜索