初级会员
  • 第 7819 位会员
  • ZhangTingkuo
  • 1757887521@qq.com
  • 2017-03-23 03:43:18
  • Offline
  • 20 75

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • ``` go muxRouter := mux.NewRouter() muxRouter.HandleFunc("/", router.IndexHandleFunc) serveMux := http.DefaultServeMux serveMux.Handle("/", muxRouter) serveMux.HandleFunc("/statics/", router.StaticsHandleFunc) httpServer := http.Server{ Addr: ":12345", Handler: serveMux, ReadTimeout: 10 * time.Second, WriteTimeout: 10 * time.Second, MaxHeaderBytes: 1 << 20, } httpServer.ListenAndServe() ```