Web.Go跟web.py类似,但使用的是Go编程语言实现的Web应用开发框架。
安装方法:
gitclonegit://github.com/hoisie/web.go.gitcdweb.gomake&&makeinstall示例代码:
packagemainimport("web")funchello(valstring)string{return"hello"+val}funcmain(){web.Get("/(.*)",hello)web.Run("0.0.0.0:9999")}编译方法:8ghello.go&&8l-ohellohello.8&&./hello
测试方法:https://localhost:9999/world
评论