博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Go语言建立一个最简单的服务端点
阅读量:6839 次
发布时间:2019-06-26

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

handlers/handlers.go

package handlersimport (	"encoding/json"	"net/http")func Routes() {	http.HandleFunc("/sendjson", SendJSON)}func SendJSON(rw http.ResponseWriter, r *http.Request) {	u := struct {		Name string		Email string	}{		Name: "Bill", 		Email: "bill@email.com",	}		rw.Header().Set("Content-Type", "application/json")	rw.WriteHeader(200)	json.NewEncoder(rw).Encode(&u)}

  main.go

package mainimport (	"log"	"net/http"	"handlers")func main() {	handlers.Routes()		log.Println("listener : Started : Listening on :4000")	http.ListenAndServe(":4000", nil)	}

  

转载地址:http://luzul.baihongyu.com/

你可能感兴趣的文章
基于pcDuino的WiFi实时视频监控智能小车——硬件部分(二)
查看>>
01-UI基础-04-02-UITableView : UIScrollView
查看>>
linux md5sum 的用法
查看>>
Java高级-HashMap工作机制
查看>>
Windows 64位系统安装Apache2.4+PHP5.5+MySQL5.6
查看>>
MySQL事务隔离级别介绍及设置
查看>>
jquery grep()筛选遍历数组
查看>>
RN开发总结 关于RN组件的导出export和export default
查看>>
Nginx+keepalived双机热备+负载均衡 ???待续
查看>>
搜素框架
查看>>
使用Xtrabackup对MySQL做主从复制
查看>>
HTML 元素和有效的 DTD文档类型
查看>>
shell 调试技术,伪信号打印程序出错位置
查看>>
(转)批处理
查看>>
struts标签绑定Map<String, List<Map<String, Object>>>
查看>>
navigator.userAgent.indexOf来判断浏览器类型
查看>>
【重磅消息】-支付宝小程序可以申请公测啦!!!
查看>>
vm用nat方式访问外网及访问宿主机
查看>>
opencv 配置
查看>>
python re group()
查看>>