博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go语言接收http请求
阅读量:5297 次
发布时间:2019-06-14

本文共 501 字,大约阅读时间需要 1 分钟。

func sayHello(w http.ResponseWriter, r *http.Request) {    r.ParseForm()//获取请求参数    fmt.Fprintf(w, "hello world")//返回前台页面}func saystu(w http.ResponseWriter, r *http.Request) {    r.ParseForm()    fmt.Fprintf(w, "hello student")}func main() {    fmt.Print("com in")    http.HandleFunc("/test", sayHello)    http.HandleFunc("/test2", saystu)    err := http.ListenAndServe(":80", nil)    if err != nil {        log.Fatal("ListenAndServe", err)    }}

访问:

转载于:https://www.cnblogs.com/hhxylm/p/11119407.html

你可能感兴趣的文章
Redis sentinel & cluster 原理分析
查看>>
OD使用教程3(下) - 调试篇03|解密系列
查看>>
我的工作习惯小结
查看>>
Calendar类
查看>>
把word文档中的所有图片导出
查看>>
Spring 自动装配;方法注入
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Oracle 初始化参数 二三事,随记
查看>>
三维凸包模板
查看>>
zoj 2432(最长递增上升子序列)
查看>>
uva 10791
查看>>
codeforces Round #440 A Search for Pretty Integers【hash/排序】
查看>>
python的字典(dict)的键值对存储规则
查看>>
more 分页显示文件内容
查看>>
ubuntu18 tensorflow cpu fast_rcnn
查看>>
PageHelper在Mybatis中的使用
查看>>
POJ 1742 Coins
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
ADO.Net——增、删、改、查
查看>>