01 . Go之从零实现Web框架(框架雏形, 上下文Context,路由) (4)

将router相关的代码独立后,gee.go简单了不少。最重要的还是通过实现了 ServeHTTP 接口,接管了所有的 HTTP 请求。相比第一天的代码,这个方法也有细微的调整,在调用 router.handle 之前,构造了一个 Context 对象。这个对象目前还非常简单,仅仅是包装了原来的两个参数,之后我们会慢慢地给Context插上翅膀。
如何使用,main.go一开始就已经亮相了。运行go run main.go,借助 curl ,一起看一看今天的成果吧。

curl -i :9999/ HTTP/1.1 200 OK Date: Mon, 12 Aug 2019 16:52:52 GMT Content-Length: 18 Content-Type: text/html; charset=utf-8 <h1>Hello Gee</h1> $ curl "http://localhost:9999/hello?name=geektutu" hello geektutu, you're at /hello $ curl "http://localhost:9999/login" -X POST -d 'username=geektutu&password=1234' {"password":"1234","username":"geektutu"} $ curl "http://localhost:9999/xxx" 404 NOT FOUND: /xxx

感谢大佬 geektutu.com 分享

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpwyyw.html