成长之路

收录了 2 篇文章 · 1 人关注

  • golang https

    Go支持https协议的简单例子 我们知道除了http方式访问网页之外,还有一种加密的https方式。Go语言的net/http包中包含了这种https页面访问方式的支持。net/http包中的ListenAndServeTLS就是提供这个功能的。我们可以先看一下这个函数的原型。 func ListenAndServeTLS(addr string, certFile string, keyFile string, handler Handler) error 从上面的函数原型我们可以...

  • go语言必读经典汇集

    http://tonybai.com/2015/09/17/7-things-you-may-not-pay-attation-to-in-go/ http://devs.cloudimmunity.com/gotchas-and-common-mistakes-in-go-golang/ http://colobu.com/2015/09/07/gotchas-and-common-mistakes-in-go-golang/#%E5%9C%A8Slice,_Array,_and_Map_ h...