golang coding [3]

7explore-share · · 1055 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

golang web 

一个简单的web Demo. 

可参考 Writing Web Applications

 

项目目录结构

 

main.go

// web project main.go
package main

import (
    "log"
    "net/http"
    "text/template"
)

type WebData struct {
    Name string
}

var name string

func rootHandler(w http.ResponseWriter, r *http.Request) {
    t, _ := template.ParseFiles("tmpl/hi.html")
    if r.Method == "GET" {

    } else {
        //请求
        name = r.FormValue("name")
        log.Println("username:", name)
    }
    if len(name) > 0 {
        wd := WebData{
            Name: name,
        }
        t.Execute(w, &wd)
    } else {
        t.Execute(w, nil)
    }

    http.Redirect(w, r, "/", http.StatusCreated)
}

// A simple say hi exmaple, sending and receive data from web
func main() {
    http.HandleFunc("/", rootHandler)
    port := ":8080"
    log.Println("serving at localhost", port)
    // start serving
    err := http.ListenAndServe(port, nil)
    if err != nil {
        log.Fatal("ListenAndServe: ", err)
    }
}

 

hi.html

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Wiki made using Golang</title>
</head>
<h1>Hi Web</h1>
<form action="/hi" method="post">
     <label for="name">Your Name</label>
     <input type="text" id="name" name="name">
     <button type="submit">Login</button>
  </form>
    <p>Hi,{{.Name}}</p>
</html>

有疑问加站长微信联系(非本文作者)

本文来自:博客园

感谢作者:7explore-share

查看原文:golang coding [3]

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1055 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传